React 组件

  • Post author:
  • Post category:其他


我们可以使用函数定义了一个组件:

function HelloMessage(props) {
    return <h1>Hello World!</h1>;
}

你也可以使用 ES6 class 来定义一个组件:

class Welcome extends React.Component {
  render() {
    return <h1>Hello World!</h1>;
  }
}

function方式,直接是return

class方式,套了render(){}

参考:


https://www.runoob.com/react/react-components.html



版权声明:本文为wmnmtm原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。