function SideNav({ active, onNav }) { const items = [ { id: 'events', icon: 'calendar', label: 'Events', badge: '12' }, { id: 'live', icon: 'radio', label: 'Race control', badge: '1' }, { id: 'results', icon: 'trophy', label: 'Results' }, { id: 'participants', icon: 'users', label: 'Participants' }, { id: 'mats', icon: 'route', label: 'Timing mats' }, { id: 'reports', icon: 'bar-chart-3', label: 'Reports' }, ]; const settings = [ { id: 'team', icon: 'user-cog', label: 'Team' }, { id: 'billing', icon: 'credit-card', label: 'Billing' }, { id: 'settings', icon: 'settings', label: 'Settings' }, ]; return ( ); } window.SideNav = SideNav;