@spoorloos/usefetch
v1.0.1
Published
A (type) safe, modern react useFetch hook
Downloads
6
Readme
import { useFetch } from "@spoorloos/usefetch";
// OR
import useFetch from "@spoorloos/usefetch";
const [data, loading, error] = useFetch("https://randomuser.me/api/", (res) => {
return res.text();
}, {
method: "GET",
headers: {},
})