46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
|
|
import { MemoryRouter } from "react-router-dom"
|
|
const queryClient = new QueryClient()
|
|
import { ConfigProvider, Empty, theme } from "antd"
|
|
import { StyleProvider } from "@ant-design/cssinjs"
|
|
import { useDarkMode } from "~/hooks/useDarkmode"
|
|
import { OptionRouting } from "~/routes"
|
|
import "~/i18n"
|
|
import { useTranslation } from "react-i18next"
|
|
import { PageAssistProvider } from "@/components/Common/PageAssistProvider"
|
|
|
|
function IndexOption() {
|
|
const { mode } = useDarkMode()
|
|
const { t, i18n } = useTranslation()
|
|
return (
|
|
<MemoryRouter>
|
|
<ConfigProvider
|
|
theme={{
|
|
algorithm:
|
|
mode === "dark" ? theme.darkAlgorithm : theme.defaultAlgorithm,
|
|
token: {
|
|
fontFamily: i18n.language === "ru" ? "Onest" : "Inter"
|
|
}
|
|
}}
|
|
renderEmpty={() => (
|
|
<Empty
|
|
imageStyle={{
|
|
height: 60
|
|
}}
|
|
description={t("common:noData")}
|
|
/>
|
|
)}>
|
|
<StyleProvider hashPriority="high">
|
|
<QueryClientProvider client={queryClient}>
|
|
<PageAssistProvider>
|
|
<OptionRouting />
|
|
</PageAssistProvider>
|
|
</QueryClientProvider>
|
|
</StyleProvider>
|
|
</ConfigProvider>
|
|
</MemoryRouter>
|
|
)
|
|
}
|
|
|
|
export default IndexOption
|