* Adds PageWrapper to pages * Add missing PageWrapper --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
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;
|