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.
 
 

20 righe
485 B

  1. import { I18nProvider, getServerI18n } from "@/i18n";
  2. import React from "react";
  3. import { Typography } from "@mui/material";
  4. import CreateTeam from "@/components/CreateTeam";
  5. const CreateTeamPage: React.FC = async () => {
  6. const { t } = await getServerI18n("team");
  7. return (
  8. <>
  9. <Typography variant="h4">{t("Create Team")}</Typography>
  10. <I18nProvider namespaces={["team"]}>
  11. <CreateTeam/>
  12. </I18nProvider>
  13. </>
  14. );
  15. };
  16. export default CreateTeamPage;