import { Button } from "./ui/Button"; interface SidebarProps { activeTab: string; onTabChange: (tab: string) => void; } export function Sidebar({ activeTab, onTabChange }: SidebarProps) { const tabs = [ { id: "patcher", label: "Patcher" }, { id: "about", label: "About" }, { id: "settings", label: "Settings" }, ]; return ( ); }