import { useQuery } from '@tanstack/react-query'; import { api } from '../api'; export function useStats() { return useQuery({ queryKey: ['stats'], queryFn: () => api.stats.get(), staleTime: 5 * 60_000, }); }