Is Axios async by it self, or is it needed to wrap it around an async function? For instance is this async :
function axios () {
axios.get()
}
Or should I write it like this:
async function axios () {
await axios.get()
}
Thanks in advance