After creating the store add this:
export const dispatch = store.dispatch
And then whenever you need to dispatch something:
import { dispatch } from './FileThatExportsDispatch'
And then simply
dispatch(action())
Mandatory read:
Reply to: How to dispatch a Redux action with a timeout?