Skip to content

Instantly share code, notes, and snippets.

@thevangelist
Last active March 2, 2018 11:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thevangelist/73d1f9505f92e819e5c83df1f4841e24 to your computer and use it in GitHub Desktop.
Save thevangelist/73d1f9505f92e819e5c83df1f4841e24 to your computer and use it in GitHub Desktop.
The Only Reducer You'll Ever Need
// Change anything with this reducer ;)!
const onlyReducerYoullEverNeed = (state={}, action) => {
return {
...state,
action.payload
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment