mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
// @debug
|
|
function Component(props) {
|
|
let x = null;
|
|
const onChange = (e) => {
|
|
console.log(x);
|
|
};
|
|
x = {};
|
|
return <Foo onChange={onChange} />;
|
|
}
|