import { Select } from '@rozenite/ui'; import type { DevHostPanelEntry } from '../types.js'; type PanelTabsProps = { panels: DevHostPanelEntry[]; activeSource: string; onValueChange: (value: string) => void; }; export const PanelTabs = ({ panels, activeSource, onValueChange, }: PanelTabsProps) => { if (panels.length === 0) { return null; } const activePanel = panels.find((panel) => panel.source === activeSource); return ( ); };