/
redly
/
reactposts
Обзор
Документация
Войти
/
redly
/
reactposts
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/hooks/UseFetchPosts.tsx
13 строк
286 B
Redlyweb
feat: add search, pagination, sort, auth with useContext
26 июн 2024, 11:45
26 июн 2024, 11:45
840acc1
Код
Авторство
О чём код?
import axios from "axios"; export async function useFetchPosts(page: number) { const response = await axios.get( "https://jsonplaceholder.typicode.com/posts", { params: { _limit: 10, _page: page, } } ); return response.data }