mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:05:09 +00:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
function foo(a, b, c) {
|
|
// Construct and freeze x
|
|
const x = makeObject(a);
|
|
<div>{x}</div>;
|
|
|
|
// y should depend on `x` and `b`
|
|
const y = x.foo(b);
|
|
return y;
|
|
}
|