14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
'use client';
|
|
|
|
import { ReactNode } from 'react';
|
|
import { QueryClientProvider } from '@tanstack/react-query';
|
|
import { queryClient } from '@/lib/api/client/query-client';
|
|
|
|
interface QueryProviderProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function QueryProvider({ children }: QueryProviderProps) {
|
|
return <QueryClientProvider client={queryClient}>{children}</QueryClientProvider>;
|
|
}
|