mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
8 lines
98 B
JavaScript
8 lines
98 B
JavaScript
function Foo(props) {
|
|
let x = bar(props.a);
|
|
let y = x?.b;
|
|
|
|
let z = useBar(y);
|
|
return z;
|
|
}
|