fetch

PHOTO EMBED

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

Saved by @Tphilus #htm

import fetch from 'unfetch'
 
const fetcher = url => fetch(url).then(r => r.json())
 
function App () {
  const { data, error } = useSWR('/api/data', fetcher)
  // ...
}
content_copyCOPY