class List extends React.Component {constructor(props) {super(props);}render() {return <p>pw will be my gf, {this.props.time}</p>}}
function List(props) {return <p>pw will be my gf, {props.time}</p>}
函数组件
- 纯函数,输入 props,输出 JSX
- 无实例,无生命周期,无 state
- 不能扩展其他方法
