Skip to content

Instantly share code, notes, and snippets.

@jrmarqueshd
Last active March 19, 2020 12:09
Show Gist options
  • Save jrmarqueshd/0eb433c74751a9f46689a64497dd5327 to your computer and use it in GitHub Desktop.
Save jrmarqueshd/0eb433c74751a9f46689a64497dd5327 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