组合 vs 继承

最后更新于:2022-04-02 03:33:49

[TOC] ## 钙素 把值放入 ## 包含关系 ``` class Demo extends Component{ constructor(props) { super(props); } render() { return (

hello

{this.props.children}

hello

) } } class App extends Component{ constructor(props) { super(props); } render() { return(

word

) } } ``` ## 槽 ``` class Demo extends Component{ constructor(props) { super(props); } render() { return (

hello

{this.props.left}

hello

{this.props.right}

hello

) } } class App extends Component{ constructor(props) { super(props); } render() { return(
注意,使用了一个闭合标签 leftleft } right={

rightright

} />
) } } ```
';