Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.conditional-hook-unknown-hook-react-namespace.js
2026-08-27 21:09:14 +00:00

8 lines
118 B
JavaScript

function Component(props) {
let x = null;
if (props.cond) {
x = React.useNonexistentHook();
}
return x;
}