函数式组件
// 创建函数式组件
function MyComponent() {
console.log(this)//this undefined 因为Babel开启了 严格模式
return <h1>我是用函数定义的组件</h1>
}
//渲染虚拟DOM
ReactDOM.render(<MyComponent/>,document.getElementById("container"))
函数式组件
// 创建函数式组件
function MyComponent() {
console.log(this)//this undefined 因为Babel开启了 严格模式
return <h1>我是用函数定义的组件</h1>
}
//渲染虚拟DOM
ReactDOM.render(<MyComponent/>,document.getElementById("container"))