Answers for "use axios instanse"

4

import axios

import axios from "axios";
Posted by: Guest on May-12-2020
3

how to use axios get

const req = async () => {
  const response = await axios.get('https://dog.ceo/api/breeds/list/all')
  console.log(response)
}
req() // Calling this will make a get request and log the response.
Posted by: Guest on December-07-2020

Browse Popular Code Answers by Language