Skip to content

Instantly share code, notes, and snippets.

@Sawtaytoes
Created April 25, 2019 04:59
Show Gist options
  • Save Sawtaytoes/4c836b7712a6452b67e6d69053a10b0d to your computer and use it in GitHub Desktop.
Save Sawtaytoes/4c836b7712a6452b67e6d69053a10b0d to your computer and use it in GitHub Desktop.
const stateModifiers = {
UPDATE_IDS: function(action) {
vm.ids = action.ids
},
}
const statelessReduxReducer = (
state,
action,
) => {
stateModifiers[action.type]
&& stateModifiers[action.type](action)
return state
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment