Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/function-declaration-redeclare.js
T
2026-08-27 21:09:14 +00:00

14 lines
183 B
JavaScript

function component() {
function x(a) {
a.foo();
}
function x() {}
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: component,
params: [],
isComponent: false,
};