Skip to content

Instantly share code, notes, and snippets.

@nucab
Created May 28, 2018 11:44
Show Gist options
  • Save nucab/498fbe158124f15387558ab32776b174 to your computer and use it in GitHub Desktop.
Save nucab/498fbe158124f15387558ab32776b174 to your computer and use it in GitHub Desktop.
handleChange(e) {
const { checked, name, type, value } = e.target;
this.setState({
[name]: type === 'checkbox' ? checked : value,
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment