Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KarafiziArtur/461a173dc0153046bb05bcca11503154 to your computer and use it in GitHub Desktop.
Save KarafiziArtur/461a173dc0153046bb05bcca11503154 to your computer and use it in GitHub Desktop.
React universal onChange handler for inputs
onChangeHandler = (event) => {
this.setState({
[event.target.name]: event.target.value
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment