2.0.6 • Published 1 year ago

@jhenbertnpm/use-fetch v2.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Quickstart

Using the custom hook

const { data, isLoaded, error } = useFetch<DataType[]>({
    fetchFn: async () => {
      const response = await fetch(url);
      const data: DataType[] = await response.json();
      return data;
    },
    initialData: [],
  });

In the example above, I use the fetch() API. You can also use Axios or any other promise-based http client.

2.0.6

1 year ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago