Skip to content

Instantly share code, notes, and snippets.

@jrmarqueshd
Created January 17, 2020 14:39
Show Gist options
  • Save jrmarqueshd/5a6c936106ad3084d542a8b75e5df11e to your computer and use it in GitHub Desktop.
Save jrmarqueshd/5a6c936106ad3084d542a8b75e5df11e 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