Skip to content

Instantly share code, notes, and snippets.

@coryhouse
Last active June 11, 2017 19:24
Show Gist options
  • Save coryhouse/d0c620b7bcc97538cfdb16cc7ad40eb0 to your computer and use it in GitHub Desktop.
Save coryhouse/d0c620b7bcc97538cfdb16cc7ad40eb0 to your computer and use it in GitHub Desktop.
Update state using Object.assign
updateState(event) {
const {name, value} = event.target;
let user = Object.assign({}, this.state.user);
user[name] = value;
return this.setState({user});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment