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