Files
fltr-app/hooks/useShows.ts
2025-10-29 20:50:21 +11:00

9 lines
202 B
TypeScript

import { useQuery } from "@tanstack/react-query";
import { getShows } from "@/apis/showApi";
export const useShows = () => {
return useQuery({
queryKey: ["shows"],
queryFn: getShows,
});
};