14 lines
359 B
TypeScript
14 lines
359 B
TypeScript
"use client";
|
|
|
|
import { FlagListingView } from "@calcom/features/flags/pages/flag-listing-view";
|
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
import { getLayout } from "@components/auth/layouts/AdminLayout";
|
|
|
|
const FlagsPage = () => <FlagListingView />;
|
|
|
|
FlagsPage.getLayout = getLayout;
|
|
FlagsPage.PageWrapper = PageWrapper;
|
|
|
|
export default FlagsPage;
|