mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:05:09 +00:00
8 lines
145 B
JavaScript
8 lines
145 B
JavaScript
function Component(props) {
|
|
const a = [props.a, props.b, "hello"];
|
|
const x = a.push(42);
|
|
const y = a.at(props.c);
|
|
|
|
return { a, x, y };
|
|
}
|