Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/a143db824a1274f0c685c0213ff348c5 to your computer and use it in GitHub Desktop.
Save dvallin/a143db824a1274f0c685c0213ff348c5 to your computer and use it in GitHub Desktop.
export function addTask(title: string): Promise<Task> {
return unwrapAxiosResponse(axios.post<Task>('/api/tasks', {title}, config));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment