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

5 lines
93 B
JavaScript

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