first-start / src /entities /Post /lib /query /useFetchPosts.tsx
Артем Леванов
first commit
41a71fd
raw
history blame contribute delete
243 Bytes
import { useQuery } from '@tanstack/react-query';
import { fetchPosts } from '../../api/fetchPosts';
export const useFetchPosts = () => {
return useQuery({
queryKey: ['fetchPosts'],
queryFn: () => fetchPosts(),
});
};