Skip to content

Instantly share code, notes, and snippets.

@sethbergman
Forked from NetanelBasal/todos.actions.ts
Created March 15, 2017 03:16
Show Gist options
  • Save sethbergman/a16f11cb47e3a633bee6116afbe9d3ad to your computer and use it in GitHub Desktop.
Save sethbergman/a16f11cb47e3a633bee6116afbe9d3ad to your computer and use it in GitHub Desktop.
export function getTodos() {
return {
type: API_REQUEST,
payload: {
url: "http://api.com/todos",
method: "GET",
onError: GET_TODOS_ERROR,
onSuccess: GET_TODOS_SUCCESS
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment