Files
react/compiler/crates/react_hermes_parser/tests/fixtures/call-spread.js
T

5 lines
89 B
JavaScript

function Component(props) {
const x = foo(...props.a, null, ...props.b);
return x;
}