Axios

PHOTO EMBED

Fri Oct 06 2023 11:06:42 GMT+0000 (Coordinated Universal Time)

Saved by @Tphilus #htm

import axios from 'axios'
 
const fetcher = url => axios.get(url).then(res => res.data)
 
function App () {
  const { data, error } = useSWR('/api/data', fetcher)
  // ...
}
content_copyCOPY