import { GetServerSidePropsContext } from "next"; import { TeamsListing } from "@calcom/features/ee/teams/components"; import Shell from "@calcom/features/shell/Shell"; import { WEBAPP_URL } from "@calcom/lib/constants"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { Button, Icon } from "@calcom/ui"; import { ssrInit } from "@server/lib/ssr"; function Teams() { const { t } = useLocale(); return ( {t("new")} }> ); } Teams.requiresLicense = false; export const getServerSideProps = async (context: GetServerSidePropsContext) => { const ssr = await ssrInit(context); return { props: { trpcState: ssr.dehydrate(), }, }; }; export default Teams;