Created
January 17, 2020 14:39
-
-
Save jrmarqueshd/5a6c936106ad3084d542a8b75e5df11e to your computer and use it in GitHub Desktop.
prevState React
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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