Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/function-param-assignment-pattern.js
2026-08-27 21:09:14 +00:00

10 lines
171 B
JavaScript

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