DEV Community

[Comment from a deleted post]
 
latobibor profile image
András Tóth

It is going to be eye-opening. Especially if you compare working with classes. Immutability is implemented through the new Proxy feature of JS, so you can write state.something = 'stuff' without doing state = { ...state, something: 'stuff' } (just as with redux-toolkit).

 
cenacr007_harsh profile image
KUMAR HARSH

Currently working on Redux toolkit, will soon check out overmind for sure.