import type { ComponentProps } from "react"; import React from "react"; import Shell from "@calcom/features/shell/Shell"; import { HorizontalTabs } from "@calcom/ui"; import type { VerticalTabItemProps, HorizontalTabItemProps } from "@calcom/ui"; import { FiltersContainer } from "../components/FiltersContainer"; const tabs: (VerticalTabItemProps | HorizontalTabItemProps)[] = [ { name: "upcoming", href: "/bookings/upcoming", }, { name: "unconfirmed", href: "/bookings/unconfirmed", }, { name: "recurring", href: "/bookings/recurring", }, { name: "past", href: "/bookings/past", }, { name: "cancelled", href: "/bookings/cancelled", }, ]; export default function BookingLayout({ children, ...rest }: { children: React.ReactNode } & ComponentProps) { return (
{children}
); } export const getLayout = (page: React.ReactElement) => {page};