Skip to content

Instantly share code, notes, and snippets.

@sfrdmn
Last active December 1, 2017 15:55
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 sfrdmn/ac382e8a44f5ca97c29fa080139c581b to your computer and use it in GitHub Desktop.
Save sfrdmn/ac382e8a44f5ca97c29fa080139c581b to your computer and use it in GitHub Desktop.
mcr_post_02
const reducer = (state, { type, payload }) => {
switch (type) {
case 'ADD_FOOD_ITEM':
return {
foodItems: [
...state.foodItems,
payload
]
}
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment