27 lines
631 B
TypeScript
27 lines
631 B
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
||
|
|
import { Toaster } from 'sonner';
|
||
|
|
import { useState } from 'react';
|
||
|
|
|
||
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
||
|
|
const [queryClient] = useState(
|
||
|
|
() =>
|
||
|
|
new QueryClient({
|
||
|
|
defaultOptions: {
|
||
|
|
queries: {
|
||
|
|
staleTime: 60 * 1000, // 1 minute
|
||
|
|
refetchOnWindowFocus: false,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|
||
|
|
);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<QueryClientProvider client={queryClient}>
|
||
|
|
{children}
|
||
|
|
<Toaster position="top-right" richColors />
|
||
|
|
</QueryClientProvider>
|
||
|
|
);
|
||
|
|
}
|