Skip to content

Instantly share code, notes, and snippets.

@euccas
Last active June 8, 2020 02:05
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 euccas/52b27ad7b0a708ba2801b0b94e59b76e to your computer and use it in GitHub Desktop.
Save euccas/52b27ad7b0a708ba2801b0b94e59b76e to your computer and use it in GitHub Desktop.
react setState
constructor(props) {
super(props)
this.state = {
userName: 'Azat Mardan',
userEmail: 'hi@azat.co',
userId: 3967
}
}
updateValues() {
this.setState({userName: 'Azat'})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment