Can a Redux action affect multiple parts of the state tree? Can a Redux action affect multiple parts of the state tree? reactjs reactjs

Can a Redux action affect multiple parts of the state tree?


Yes, absolutely. It’s the whole reason why actions exist: to separate what happened from the component’s point of view from what actually happens in terms of state change.


Yes, it's ok. If that's what you want to happen.