📜  功能组件 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:07.809000             🧑  作者: Mango

代码示例3
const MySubComponent = (props) => {
    if (props.display) {
        return 

This text is displayed

} } class MyComponent extends React.Component { render() { return ( ) } }