Skip to content

Instantly share code, notes, and snippets.

@androidfanatic
Created March 23, 2020 07:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save androidfanatic/1dd743e78999e94203ffa292d1afff2c to your computer and use it in GitHub Desktop.
Save androidfanatic/1dd743e78999e94203ffa292d1afff2c to your computer and use it in GitHub Desktop.
export default class CounterApp extends React.Component {
constructor(props) {
super(props);
this.state = { count: 0 };
this.increaseCount = this.increaseCount.bind(this);
}
increaseCount() {
this.setState({ count: this.state.count + 1 });
}
render() {
return (
<div className="App">
<button onClick={this.increaseCount}>COUNT ({this.state.count})</button>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment