Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/destructure-capture-global.js
T

12 lines
188 B
JavaScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
let someGlobal = {};
function component(a) {
let x = {a, someGlobal};
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: component,
params: ['value 1'],
isComponent: false,
};