Files
react/compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-array-push-frozen.js
2024-04-02 16:49:31 -07:00

7 lines
99 B
JavaScript

function Component(props) {
const x = [];
<div>{x}</div>;
x.push(props.value);
return x;
}