"use client"; import { useState } from "react"; import { ReactQueryDevtools } from "@tanstack/react-query-devtools"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; // --------------------------------------------------------------- export function TanStackProvider({ children }: { children: React.ReactNode }) { const [queryClient] = useState( () => new QueryClient({ defaultOptions: { queries: { // With SSR, we usually want to set some default staleTime // to avoid refetching immediately on the client staleTime: 60 * 1000, }, }, }), ); return ( {children} ); }