Files
calendar/apps/web/pages/auth/setup/index.tsx
T
2024-10-03 15:37:11 +00:00

27 lines
612 B
TypeScript

"use client";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { Meta } from "@calcom/ui";
import PageWrapper from "@components/PageWrapper";
import { getServerSideProps } from "@server/lib/setup/getServerSideProps";
import type { PageProps } from "~/auth/setup-view";
import Setup from "~/auth/setup-view";
const Page = (props: PageProps) => {
const { t } = useLocale();
return (
<>
<Meta title={t("setup")} description={t("setup_description")} />
<Setup {...props} />
</>
);
};
Page.PageWrapper = PageWrapper;
export default Page;
export { getServerSideProps };