27 lines
645 B
TypeScript
27 lines
645 B
TypeScript
|
|
import { ConfigProvider } from 'antd-mobile'
|
||
|
|
import zhCN from 'antd-mobile/es/locales/zh-CN'
|
||
|
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
|
||
|
|
import type { ReactNode } from 'react'
|
||
|
|
|
||
|
|
const queryClient = new QueryClient({
|
||
|
|
defaultOptions: {
|
||
|
|
queries: {
|
||
|
|
staleTime: 60 * 1000,
|
||
|
|
retry: 1,
|
||
|
|
refetchOnWindowFocus: false,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
type AppProvidersProps = {
|
||
|
|
children: ReactNode
|
||
|
|
}
|
||
|
|
|
||
|
|
export function AppProviders({ children }: AppProvidersProps) {
|
||
|
|
return (
|
||
|
|
<ConfigProvider locale={zhCN}>
|
||
|
|
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
|
||
|
|
</ConfigProvider>
|
||
|
|
)
|
||
|
|
}
|