mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:04:59 +00:00
5 lines
98 B
JavaScript
5 lines
98 B
JavaScript
function Component(props) {
|
|
const x = [0, ...props.foo, null, ...props.bar, "z"];
|
|
return x;
|
|
}
|