共享状态提升到最近的公共父组件中 由公共父组件管理这个状态

状态提升

提供共享状态或者操作状态的方法

//导入react
import React from 'react'
import ReactDOM from 'react-dom'

//导入组件
// 约定1:类组件必须以大写字母开头
// 约定2:类组件应该继承react.component父类 从中可以使用父类的方法和属性
// 约定3:组件必须提供render方法
// 约定4:render方法必须有返回值

class Parent extends React.Component {
	state = {
		count: 0,
	}
	onIncreate = () => {
		
		this.setState({
			count:this.state.count+1,
		})
	}
	render() {
		return (
			<div>
				
				<Child1 count={this.state.count}/>
                <Child2 onIncreate={this.onIncreate}/>
			</div>
		)
	}
}
const Child1=props=>{
    return <h1>计数器:{props.count}</h1>
}
const Child2=props=>{
    return <button onClick={()=>props.onIncreate()}>+1</button>
}
ReactDOM.render(<Parent />, document.getElementById('root'))