Skip to content

Instantly share code, notes, and snippets.

@vagusX
Created July 26, 2016 05:50
Show Gist options
  • Save vagusX/2c55b03d46eaa9027649d259d3c16708 to your computer and use it in GitHub Desktop.
Save vagusX/2c55b03d46eaa9027649d259d3c16708 to your computer and use it in GitHub Desktop.
react utils
handleChange = field => {
return e => {
const value = e.target ? e.target.value : e;
const newFormData = { ...this.state.formData };
newFormData[field] = value;
this.setState({
formData: newFormData
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment