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 (
<>
{t("Create Team")}
>
);
};
export default CreateTeamPage;