I am using redux with connect and redux-thunk middleware and containers.
connect
redux-thunk
Currently when an user perform an action, example one click on a butto
If you have a Promise Middleware, you can use this syntax so you're able to use .then() on your dispatch(topLevelAction()):
.then()
dispatch(topLevelAction())
export const topLevelAction = () => dispatch => { return Promise.all([dispatch(action1()), dispatch(action2()), dispatch(action3())]) }