Skip to content

Instantly share code, notes, and snippets.

@jake-daniels
Created February 19, 2019 09:28
Show Gist options
  • Save jake-daniels/e90841a8b8392584f0fb534b5175532e to your computer and use it in GitHub Desktop.
Save jake-daniels/e90841a8b8392584f0fb534b5175532e to your computer and use it in GitHub Desktop.
const actions = Object.keys(actionMap).reduce((acc, key) => {
const actionCreator = actionMap[key]
const fn = (...args) => {
const action = actionCreator(...args)
dispatch(action)
}
return { ...acc, [key]: fn }
}, {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment