/** * تب دکترها با نشانگر underline — بازسازی تب‌های بالای صفحهٔ نوبت‌های طرح tauri * (`index.jsx`): فعال #5559ce با خط زیرین، بقیه خاکستری. */ export interface DoctorTab { uuid: string; name: string; } export default function DoctorTabs({ doctors, selected, onSelect, showAll = true, }: { doctors: DoctorTab[]; /** '' یعنی «همه». */ selected: string; onSelect: (uuid: string) => void; showAll?: boolean; }) { const tabs: DoctorTab[] = showAll ? [{ uuid: '', name: 'همه' }, ...doctors] : doctors; return (
{tabs.map((d) => { const active = selected === d.uuid; return ( ); })}
); }