mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:14:59 +00:00
9 lines
123 B
JavaScript
9 lines
123 B
JavaScript
function Component() {
|
|
let x = null;
|
|
function foo() {
|
|
x = 9;
|
|
}
|
|
const y = bar(foo);
|
|
return <Child y={y} />;
|
|
}
|