mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +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;
|
|
}
|