mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
7 lines
104 B
JavaScript
7 lines
104 B
JavaScript
function g(props) {
|
|
const a = { b: { c: props.c } };
|
|
a.b.c = a.b.c + 1;
|
|
a.b.c *= 2;
|
|
return a;
|
|
}
|