"use client" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" import { TimeshiftSpreadsheet } from "./timeshift-spreadsheet" import { ScheduleHistory } from "./schedule-history" import { ScheduleTemplates } from "./schedule-templates" import { Calendar, History, FileIcon as FileTemplate, Table } from "lucide-react" interface ScheduleTabsProps { teamId: string teamName: string } export function ScheduleTabs({ teamId, teamName }: ScheduleTabsProps) { return ( Current Schedule History Templates Calendar View

Calendar View

Calendar view coming soon...

) }