Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/destructuring-array-param-default.js
T
2026-08-27 21:09:14 +00:00

10 lines
150 B
JavaScript

function Component([a = 2]) {
return a;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: ['TodoAdd'],
isComponent: 'TodoAdd',
};