Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/infer-functions-component-with-hook-call.js
2026-08-27 21:09:14 +00:00

6 lines
113 B
JavaScript

// @compilationMode:"infer"
function Component(props) {
const [state, _] = useState(null);
return [state];
}