Skip to content

Instantly share code, notes, and snippets.

@mattcarbone
Last active January 22, 2018 01:30
Show Gist options
  • Save mattcarbone/dc4a80de9a544470fdacb9a2dd09c7c8 to your computer and use it in GitHub Desktop.
Save mattcarbone/dc4a80de9a544470fdacb9a2dd09c7c8 to your computer and use it in GitHub Desktop.
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