Skip to content

Instantly share code, notes, and snippets.

@kluu1
Last active March 16, 2020 12:44
Show Gist options
  • Select an option

  • Save kluu1/a25f6eeb050e438a70d82d02e51b0cd9 to your computer and use it in GitHub Desktop.

Select an option

Save kluu1/a25f6eeb050e438a70d82d02e51b0cd9 to your computer and use it in GitHub Desktop.
function getToDo() {
axios.get('https://jsonplaceholder.typicode.com/todos/1')
.then(response => console.log(response.data))
.catch(error => console.error(error))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment