Skip to content

Instantly share code, notes, and snippets.

@aigoncharov
Created February 11, 2019 19:40
Show Gist options
  • Save aigoncharov/1597e477ebe16138d508fe9ce1090d7a to your computer and use it in GitHub Desktop.
Save aigoncharov/1597e477ebe16138d508fe9ce1090d7a to your computer and use it in GitHub Desktop.
Reducer organization - taking a step further
const getReducerMap = (methodsWithActionTypes) =>
methodsWithActionTypes.reduce((reducerMap, { method, actionType }) => {
reducerMap[actionType] = method
return reducerMap
}, {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment