天天看點

源碼分析-react3-建立dom

React.createElement

class Welcome extends React.Component {
  constructor(){
  	super()
    this.state={
    test:1}
  }
  render() {
    return <h1>Hello, {this.props.name}</h1>;
  }
  componentWillMount(){}
}
      
源碼分析-react3-建立dom

html内置标簽

源碼分析-react3-建立dom

繼續閱讀