'use client' import type { FC, PropsWithChildren } from 'react' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { ReactQueryDevtools } from '@tanstack/react-query-devtools' const client = new QueryClient() export const TanstackQueryIniter: FC = (props) => { const { children } = props return {children} }