Skip to content

Instantly share code, notes, and snippets.

@alexaivars
Created October 31, 2016 18:46
Show Gist options
  • Select an option

  • Save alexaivars/a9bae36e98e634e6cd877eea802a7e73 to your computer and use it in GitHub Desktop.

Select an option

Save alexaivars/a9bae36e98e634e6cd877eea802a7e73 to your computer and use it in GitHub Desktop.
compose redux reducers
export default function composeReducers(...reducers) {
return (state, action) => reducers.reduce((result, fn)=>fn(result, action), state);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment