* Adds PageWrapper to pages * Add missing PageWrapper --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
import TeamListView from "@calcom/features/ee/teams/pages/team-listing-view";
|
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
import type { CalPageWrapper } from "@components/PageWrapper";
|
|
|
|
const Page = TeamListView as CalPageWrapper;
|
|
Page.PageWrapper = PageWrapper;
|
|
|
|
export default Page;
|