"use client"; import { OrchestratorPanel } from "@/components/mission-control/OrchestratorPanel"; interface MissionControlPanelProps { panels: readonly string[]; panelSessionIds?: readonly (string | undefined)[]; } export function MissionControlPanel({ panels, panelSessionIds, }: MissionControlPanelProps): React.JSX.Element { return (