mirror of
https://github.com/facebook/react.git
synced 2026-02-26 05:25:05 +00:00
10 lines
126 B
JavaScript
10 lines
126 B
JavaScript
function Component() {
|
|
let x,
|
|
y = (x = {});
|
|
const foo = () => {
|
|
x = getObject();
|
|
};
|
|
foo();
|
|
return [y, x];
|
|
}
|