const tabs = [ { key: 'temporal', label: 'Temporal' }, { key: 'points', label: 'Points' }, { key: 'diagram', label: 'Diagram' }, ] as const export type TabKey = (typeof tabs)[number]['key'] interface SidebarProps { activeTab: TabKey onTabChange: (tab: TabKey) => void open: boolean } export default function Sidebar({ activeTab, onTabChange, open }: SidebarProps) { return (

FullStack Lab

Visualisation

) }