Skip to content

Instantly share code, notes, and snippets.

@ryanjyost
Created April 17, 2018 02:25
Show Gist options
  • Select an option

  • Save ryanjyost/31ae0372cbf981d23a6750cf276d7288 to your computer and use it in GitHub Desktop.

Select an option

Save ryanjyost/31ae0372cbf981d23a6750cf276d7288 to your computer and use it in GitHub Desktop.
updateInput() with localStorage
updateInput(key, value) {
// update react state
this.setState({ [key]: value });
// update localStorage
localStorage.setItem(key, value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment