* fixes #16833 * Update index.tsx --------- Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com>
27 lines
612 B
TypeScript
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 };
|