import NavTabs from "./NavTabs"; export default function BookingsShell(props) { const tabs = [ { name: "Upcoming", href: "/bookings/upcoming", }, { name: "Past", href: "/bookings/past", }, { name: "Cancelled", href: "/bookings/cancelled", }, ]; return (

{props.children}
); }