mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
5 lines
93 B
JavaScript
5 lines
93 B
JavaScript
function Component(props) {
|
|
const { x: { y } = { y: "default" } } = props.y;
|
|
return y;
|
|
}
|