I'm feeling a bit confused regarding reducers and dispatchers. While both receive actions as parameters, it doesn't necessarily mean that the actions I use in my dispatchers are the same as those used in my reducers, correct?
For example, if I have an action called fetchData, that action will be dispatched but won't actually reach the reducer since it doesn't alter the state.
All the tutorials on redux that I've come across emphasize centralizing all actions in one place. However, I believe we should distinguish between reducersActions and dispatchersActions.
Is there something important that I might be overlooking?