Skip to content

Instantly share code, notes, and snippets.

@kolserdav
Created August 25, 2019 08:36
Show Gist options
  • Save kolserdav/8f6ccf6b9bb66f0a38fc42777d21d094 to your computer and use it in GitHub Desktop.
Save kolserdav/8f6ccf6b9bb66f0a38fc42777d21d094 to your computer and use it in GitHub Desktop.
const storeCategories = createStore((state = [], action) => {
switch (action.type) {
case 'ADD_CATEGORIES':
return state.concat([action.categories]);
default:
return state
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment