xxxxxxxxxx
<button onClick={() => this.setState({ count: this.state.count + 1 })}>
Click me
</button>
xxxxxxxxxx
class Example extends React.Component {
constructor(props) {
super(props);
this.state = {
count: 0
};
}
xxxxxxxxxx
const Example = (props) => {
// You can use Hooks here!
return <div />;
}