Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Last active February 26, 2018 15:44
Show Gist options
  • Save ShMcK/17b3a396576a425de091170ec141b1bf to your computer and use it in GitHub Desktop.
Save ShMcK/17b3a396576a425de091170ec141b1bf to your computer and use it in GitHub Desktop.
Consistent Action Creator
const anyActionCreator = (namespace, type) => (payload) => ({
type: `${namespace}/${type}`,
payload
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment