import { SessionSwitcher } from "./SessionSwitcher"; import { NewSessionButton } from "./NewSessionButton"; import type { Session } from "../types"; interface TopBarProps { sessions: Session[]; currentSessionId: string | null; currentSessionTitle: string; onSessionSelect: (sessionId: string) => void; onNewSession: () => void; } export function TopBar(props: TopBarProps) { return (
); }