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

5 lines
103 B
JavaScript

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