Where is dispatch in Redux?

Redux doesn’t have a Dispatcher or support many stores. Instead, there is just a single store with a single root reducing function . As your app grows, instead of adding stores, you split the root reducer into smaller reducers independently operating on the different parts of the state tree.

Read more