mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:05:08 +00:00
5 lines
82 B
JavaScript
5 lines
82 B
JavaScript
function Component(props) {
|
|
const x = props.cond ? useA : useB;
|
|
return x();
|
|
}
|