Created
January 17, 2020 14:39
-
-
Save jrmarqueshd/f482c4570643c0ee959b751cda0cc97c 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