Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.invalid-destructure-to-local-global-variables.js
2026-08-27 21:09:14 +00:00

7 lines
81 B
JavaScript

function Component(props) {
let a;
[a, b] = props.value;
return [a, b];
}