export default function Sidebar({ oocCount, visitDueCount, refillCount, activeFilter, onFilterChange, onImportClick, }) { const navItems = [ { label: "All Patients", key: "all", icon: "≡", badge: null, }, { label: "Resupply Ready", key: "REFILL_WINDOW", icon: "⚠", badge: refillCount, badgeWarn: true, }, { label: "Renewal Due", key: "VISIT_DUE", icon: "⚡", badge: visitDueCount, }, { label: "Supply Lapsed", key: "OUT_OF_COVERAGE", icon: "✕", badge: oocCount, }, ]; return ( ); }