Initial commit
This commit is contained in:
13
resources/js/pages/AdminPage.tsx
Normal file
13
resources/js/pages/AdminPage.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user