Skip to content

Instantly share code, notes, and snippets.

@mattcarbone
Last active January 22, 2018 01:30
Show Gist options
  • Save mattcarbone/49a499bb70fd98bf311cd56ab8b5c409 to your computer and use it in GitHub Desktop.
Save mattcarbone/49a499bb70fd98bf311cd56ab8b5c409 to your computer and use it in GitHub Desktop.
export function setPostsAction(posts) {
return {
type: 'SET_POSTS', posts: posts
}
}
export function appPostsAction(post) {
return {
type: 'APPEND_POSTS', post: post
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment