function App() { return( <> <Abc/> <Abc x="xxxxx"/> </> ); } export default App; function Abc(props) { return (<>{props.x?<b>ffffff</b>:<i>gggggg</i>}</>) } /*Abc depends on the value of the x prop*/