mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
function Component(props) {
|
|
const a = [props.a, props.b, "hello"];
|
|
const x = a.length;
|
|
const y = a.push;
|
|
return { a, x, y, z: a.concat };
|
|
}
|