class Square extends React.Component {
constructor(props) {
super(props);
this.state = {
value: 0,
};
}
render() {
const { value } = this.state;
return (
<button className="square" onClick={() => {
this.setState({value: ++value})
}}>
{this.state.value}
</button>
);
}
}