where to set this.state in react code example
Example 1: reading state react
<button onClick={() => this.setState({ count: this.state.count + 1 })}>
Click me
</button>
Example 2: reactjs update state example
{
hasBeenClicked: false,
currentTheme: 'blue',
}