源码分析-react3-创建dom

React.createElement

class Welcome extends React.Component {
  constructor(){
  	super()
    this.state={
    test:1}
  }
  render() {
    return <h1>Hello, {this.props.name}</h1>;
  }
  componentWillMount(){}
}

html内置标签

原文地址:https://www.cnblogs.com/jiebba/p/8014321.html