"use client"; import type { ComponentProps } from "react"; import React from "react"; import Shell from "@calcom/features/shell/Shell"; export type MainLayoutAppDirProps = { children: React.ReactNode } & ComponentProps; export default function MainLayoutAppDir({ children, ...rest }: MainLayoutAppDirProps) { return ( {children} ); } export const getLayout = (page: React.ReactElement) => {page};