Created
August 25, 2019 08:36
-
-
Save kolserdav/8f6ccf6b9bb66f0a38fc42777d21d094 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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