Last active
January 22, 2018 01:30
-
-
Save mattcarbone/dc4a80de9a544470fdacb9a2dd09c7c8 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
export function postsReducer(state = [], action) { | |
switch (action.type) { | |
case "SET_POSTS": | |
return action.posts | |
case "APPEND_POSTS": | |
return [...state, ...action.post] | |
default: | |
return state | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment