React函数式组件和类组件区别

函数式组件 类组件
子组件需要通过函数参数传递 子组件可通过this.props.children传递
包裹子组件符合JSX风格
可以使用hook 不能使用hook
只需返回jsx 需要继承React.Component

Guess you like

Origin blog.csdn.net/V__KING__/article/details/116895052