import React, {Component} from 'react';
class Header extends Component {
state ={
counter: 0
}
render(){
return(
<div>
<div>
{this.state.counter}
</div>
<div>
<button onClick={this.plus}>прибавить</button>
</div>
</div>
)
}
plus = () =>
this.setState({
counter: +1
})
}
export default Header
counter: this.state.counter++?
Обсуждают сегодня