File size: 243 Bytes
41a71fd
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { useQuery } from '@tanstack/react-query';
import { fetchPosts } from '../../api/fetchPosts';

export const useFetchPosts = () => {
    return useQuery({
        queryKey: ['fetchPosts'],
        queryFn: () => fetchPosts(),
    });
};