mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:04:59 +00:00
10 lines
145 B
JavaScript
10 lines
145 B
JavaScript
function Component(props) {
|
|
let x;
|
|
if (props.cond) {
|
|
[[x] = ["default"]] = props.y;
|
|
} else {
|
|
x = props.fallback;
|
|
}
|
|
return x;
|
|
}
|