mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
function Component(props) {
|
|
const index = "foo";
|
|
const x = {};
|
|
x[index] = x[index] + x["bar"];
|
|
x[index](props.foo);
|
|
return x;
|
|
}
|