Skip to content

Commit 498e19f

Browse files
committed
docs(useFetch): add usage example for useFetch in a React component
- Includes example API request to `/api/data` with `GET` method - Shows handling of `loading`, `error`, and `value` states - Provides a clear guide for rendering fetched data in a component
1 parent 97428ca commit 498e19f

File tree

1 file changed

+22
-23
lines changed

1 file changed

+22
-23
lines changed

docs/useFetch.md

+22-23
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A hook to fetch data from a URL.
55
## Arguments
66

77
- `url` (`string`): The URL to fetch data from.
8-
- `options` (`object`, optional): Additional options for the `fetch` request.
8+
- `options` (`object`, optional): Additional options for the `fetch` request for example `method: 'GET', headers: { User-Agent: Mozilla 5.0 }`.
99
- `dependencies` (`array`, optional): Dependency array to control when the fetch should be retriggered.
1010

1111
## Returns
@@ -19,27 +19,26 @@ A hook to fetch data from a URL.
1919
## How to Use
2020

2121
```js
22-
import { useState } from "react"
23-
import useFetch from "./useFetch"
24-
25-
export default function FetchComponent() {
26-
const [id, setId] = useState(1)
27-
const { loading, error, value } = useFetch(
28-
`https://jsonplaceholder.typicode.com/todos/${id}`,
29-
{},
30-
[id]
31-
)
32-
33-
return (
34-
<div>
35-
<div>{id}</div>
36-
<button onClick={() => setId(currentId => currentId + 1)}>
37-
Increment ID
38-
</button>
39-
<div>Loading: {loading.toString()}</div>
40-
<div>{JSON.stringify(error, null, 2)}</div>
41-
<div>{JSON.stringify(value, null, 2)}</div>
42-
</div>
43-
)
22+
import { useFetch } from './hooks/useFetch';
23+
24+
export default function Home() {
25+
const { loading, error, value } =
26+
useFetch <
27+
/*YourDataType*/ >
28+
('/api/data',
29+
{ method: 'GET' },
30+
[
31+
/* dependencies */
32+
]);
33+
34+
if (loading) return <div>Loading...</div>;
35+
if (error) return <div>Error: {error.message}</div>;
36+
37+
return (
38+
<div>
39+
{/* Render your data here */}
40+
{JSON.stringify(value)}
41+
</div>
42+
);
4443
}
4544
```

0 commit comments

Comments
 (0)