So i\'m writing a React-Redux web app, and i call dispatch from my react components like this :
this.props.dispatch(someAction());
Now i ne
The dispatch method is one of the store's methods. react-redux makes dispatch available to components as props via the provider, and mapDispatchToProps.
dispatch
provider
mapDispatchToProps
You can dispatch directly from the store:
store.dispatch(action)