'use client' import type { ReactNode } from 'react' import { QueryClientProvider } from '@tanstack/react-query' import { getQueryClient } from '@/app/_shell/providers/get-query-client' export { getQueryClient } from '@/app/_shell/providers/get-query-client' export function QueryProvider({ children }: { children: ReactNode }) { const queryClient = getQueryClient() return {children} }