Files
react/compiler/crates/react_hermes_parser/tests/fixtures/declare-reassign-variable-in-function-declaration.js
2024-04-02 16:49:31 -07:00

9 lines
123 B
JavaScript

function Component() {
let x = null;
function foo() {
x = 9;
}
const y = bar(foo);
return <Child y={y} />;
}