Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.invalid-array-push-frozen.js
T
2026-08-27 21:09:14 +00:00

7 lines
99 B
JavaScript

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