import type { PropsWithChildren } from 'react' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { App as AntDesignApp, ConfigProvider } from 'antd' const queryClient = new QueryClient() export function AppProviders({ children }: PropsWithChildren) { return ( {children} ) }