Skip to content

Instantly share code, notes, and snippets.

@jrmarqueshd
Created January 17, 2020 14:39
Show Gist options
  • Save jrmarqueshd/f482c4570643c0ee959b751cda0cc97c to your computer and use it in GitHub Desktop.
Save jrmarqueshd/f482c4570643c0ee959b751cda0cc97c to your computer and use it in GitHub Desktop.
prevState React
state:{
form:{
[state]: {
value: []
}
}
}
this.setState(prevState => ({
...prevState,
form: {
...prevState.form,
[state]: {
...prevState.form[state],
value: [...prevState.form[state].value, data]
}
}
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment