mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +00:00
12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
|
|
export const QueryProvider = ({ children }: { children: React.ReactNode }) => {
|
|
const [queryClient] = useState(() => new QueryClient());
|
|
|
|
return (
|
|
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
|
|
);
|
|
};
|