Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/hooks-with-React-namespace.js
T
2026-08-27 21:09:14 +00:00

10 lines
147 B
JavaScript

function Component() {
const [x, setX] = React.useState(1);
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [],
};