14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
import useI18n from "@/hooks/i18n.ts";
|
|
import MainLayout from "@/layout/main/mainLayout";
|
|
import { Button } from "antd-mobile";
|
|
import { useI18nStore } from "@/store/i18n.ts";
|
|
|
|
function Index() {
|
|
const t = useI18n();
|
|
const i18nStore = useI18nStore();
|
|
|
|
return <MainLayout>qq</MainLayout>;
|
|
}
|
|
|
|
export default Index;
|