Skip to content

Instantly share code, notes, and snippets.

@codingnninja
Last active August 6, 2019 21:23
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 codingnninja/5d61aadb261a67b8fd595f0769fe0f55 to your computer and use it in GitHub Desktop.
Save codingnninja/5d61aadb261a67b8fd595f0769fe0f55 to your computer and use it in GitHub Desktop.
Handle form input
handleInputChange(event) {
const target = event.target;
const value = target.value;
const name = target.name;
this.setState({
[name]:value
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment