Skip to content

Instantly share code, notes, and snippets.

@aminbenselim
Created March 26, 2017 20:18
Show Gist options
  • Save aminbenselim/fe200b19600a99b3edd0c3d83a3da174 to your computer and use it in GitHub Desktop.
Save aminbenselim/fe200b19600a99b3edd0c3d83a3da174 to your computer and use it in GitHub Desktop.
Posts List and Single Post actions
//Post list
export const GET_POSTS = 'GET_POSTS';
export const GET_POSTS_SUCCESS = 'GET_POSTS_SUCCESS';
export const GET_POSTS_FAILURE = 'GET_POSTS_FAILURE';
//Single post
export const GET_POST = 'GET_POST';
export const GET_POST_SUCCESS = 'GET_POST_SUCCESS';
export const GET_POST_FAILURE = 'GET_POST_FAILURE';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment