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
As other pointed out The action creator is the right place for dispatching multiple actions.
The action creator
Below an example of how action1 could dispatch other actions in your action creator.
action1
action creator
const action1 = id => { return dispatch => { dispatch(action2(id)) dispatch(action3(id)) } }