DEV Community

Discussion on: Handling Objects in React Component State

Collapse
 
minnyww profile image
apisit Amunayworrabut

use functional updater to update state.

Collapse
 
hannakim91 profile image
Hanna (she/her)

I'm not sure what you mean by this - if you'd like to clarify, that'd be great. @minnyww

Collapse
 
minnyww profile image
apisit Amunayworrabut

like this
setCount(prevCount => prevCount + 1)

Thread Thread
 
minnyww profile image
apisit Amunayworrabut

setUser(prevValue => {
...prevValue,
[prop]: e.target.value
})

it will prevent unnecessary re-render