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

5 lines
81 B
JavaScript

function Component(props) {
const [[x] = ["default"]] = props.y;
return x;
}