mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
function Component(props) {
|
|
const x = [{}, [], props.value];
|
|
const y = x.join(() => "this closure gets stringified, not called");
|
|
foo(y);
|
|
return [x, y];
|
|
}
|