Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active July 1, 2016 00:12
Show Gist options
  • Save viniciusdacal/757d444dce598321fbd4db65726e7ba9 to your computer and use it in GitHub Desktop.
Save viniciusdacal/757d444dce598321fbd4db65726e7ba9 to your computer and use it in GitHub Desktop.
import http from './HttpClient'; //simple http request manager
export function getContacts({ userId }) {
const payload = { userId };
return {
types: [
GET_CONTACTS_REQUEST,
GET_CONTACTS_SUCCESS,
GET_CONTACTS_FAILURE,
],
callAPI: () => http.get('user/contacts', payload),
payload,
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment