Skip to content

Instantly share code, notes, and snippets.

@shcyiza
Created October 29, 2018 15:57
Show Gist options
  • Save shcyiza/5a30fd250d22b2f9eba8fba97fb581d2 to your computer and use it in GitHub Desktop.
Save shcyiza/5a30fd250d22b2f9eba8fba97fb581d2 to your computer and use it in GitHub Desktop.
// create state with constructor
constructor(props) {
super(props);
this.state = {comment: "yo!"};
}
// proper way to change the state
this.setState({comment: 'Hello'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment