Files
react/compiler/crates/react_hermes_parser/tests/fixtures/new-spread.js
2024-04-02 16:49:31 -07:00

5 lines
99 B
JavaScript

function Component(props) {
const x = new Foo(...props.foo, null, ...[props.bar]);
return x;
}