* migrate license-key/new * migrate settings/org/dsync * migrate settings/org/privacy * migrate org attributes * remove res in getServerSideProps * Fix SettingsLayoutAppDir * fix attributes pages * fix * fix
23 lines
609 B
TypeScript
23 lines
609 B
TypeScript
"use client";
|
|
|
|
import DirectorySyncTeamView from "@calcom/features/ee/dsync/page/team-dsync-view";
|
|
import { getLayout } from "@calcom/features/settings/layouts/SettingsLayout";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { Meta } from "@calcom/ui";
|
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
|
|
const Page = () => {
|
|
const { t } = useLocale();
|
|
return (
|
|
<>
|
|
<Meta title={t("directory_sync")} description={t("directory_sync_description")} />
|
|
<DirectorySyncTeamView />
|
|
</>
|
|
);
|
|
};
|
|
Page.getLayout = getLayout;
|
|
Page.PageWrapper = PageWrapper;
|
|
|
|
export default Page;
|