14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { useLanguageStore } from "@/stores/languageStore";
|
|
|
|
export default function AdminPage() {
|
|
const { t } = useTranslation("common");
|
|
const locale = useLanguageStore((s) => s.locale);
|
|
|
|
return (
|
|
<>
|
|
<h1>Správa závodů</h1>
|
|
</>
|
|
);
|
|
}
|