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 need to call dispatch from a javascript function that is not a React Component, so how do i import the dispatch function and use it in this case ? Thank you.
The dispatch method is one of the store's methods. react-redux makes
dispatch
available to components as props via theprovider
, andmapDispatchToProps
.You can dispatch directly from the store:
The
dispatch
function is a member of your redux store. If you created and exported your store in a module, it would be as easy as importing the store in your module and calling thedispatch
function.Example: