Why don’t you need Redux anymore?
Dispatch() just indicates an intent to change the state, it doesn’t actually change it… that’s where Reducers come in. Component A sends its state changes to the store, if Component B and C need this state change, they can get it from the store. If we had left our components communicating with each other, we […]