Files
react/compiler/crates/react_hermes_parser/tests/fixtures/destructuring-assignment-array-default.js
2024-04-02 16:49:31 -07:00

10 lines
145 B
JavaScript

function Component(props) {
let x;
if (props.cond) {
[[x] = ["default"]] = props.y;
} else {
x = props.fallback;
}
return x;
}