Skip to content

Instantly share code, notes, and snippets.

@joedski
Last active May 28, 2017 20:35
Show Gist options
  • Save joedski/97cdd15edadc9f578c594459cd94343a to your computer and use it in GitHub Desktop.
Save joedski/97cdd15edadc9f578c594459cd94343a to your computer and use it in GitHub Desktop.
Javascript: Redux: Dispatching Multiple Actions: Redux Thunk
function multiAction(actions) {
return (dispatch) => actions.map(a => dispatch(a));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment