import type { ComponentProps } from "react"; import React, { Suspense } from "react"; import type Shell from "@calcom/features/shell/Shell"; import { ErrorBoundary, Icon } from "@calcom/ui"; export default function TroubleshooterLayout({ children, }: { children: React.ReactNode } & ComponentProps) { return (
}>{children}
); } export const getLayout = (page: React.ReactElement) => {page};