Skip to content

Instantly share code, notes, and snippets.

@ger86
Created November 27, 2018 18:16
Show Gist options
  • Save ger86/4e0b96d0170a2cc991ac28477b213b73 to your computer and use it in GitHub Desktop.
Save ger86/4e0b96d0170a2cc991ac28477b213b73 to your computer and use it in GitHub Desktop.
export const requestIds = {
GET_POSTS: 'GET_POSTS'
};
export const getPosts = query => ({
requestParams: {
method: 'get',
url: `/posts`,
params: query
},
requestId: requestIds.GET_POSTS
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment