Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- import { I18nProvider, getServerI18n } from "@/i18n";
- import React from "react";
- import { Typography } from "@mui/material";
- import CreateTeam from "@/components/CreateTeam";
-
- const CreateTeamPage: React.FC = async () => {
- const { t } = await getServerI18n("team");
-
- return (
- <>
- <Typography variant="h4">{t("Create Team")}</Typography>
- <I18nProvider namespaces={["team"]}>
- <CreateTeam/>
- </I18nProvider>
- </>
- );
- };
-
- export default CreateTeamPage;
|