Does Axios operate asynchronously on its own, or does it require being wrapped within an async function? For example, is this code snippet asynchronous:
function axios () {
axios.get()
}
Or should I structure it like this:
async function axios () {
await axios.get()
}
Appreciate any help in advance