React 组件 3 中方式

React.createClass(弃用), Class 和 Stateless Functional Component

推荐尽量 Functional Component,保持简洁和无状态。这是函数,没有 this 作用域,可以使用 pure function,组件的可测试性也非常高。


function Hello(props){
return
Hello {props.name}
}

Hooks:
// useState, useEffect, useContext