I am working on nextjs(reactjs framework) Right now i want to know the difference betweeen "axios" and "await fetch" ? In which situation we should use "axios" ? For example here is my code
const response = await fetch(`/api/comments/${commentId}`, {
method: 'DELETE'
})