| 27 | import { NavLink } from "./nav-link" |
| 28 | |
| 29 | interface MenuItem { |
| 30 | label: string |
| 31 | value?: string |
| 32 | trackLabel?: TrackLabel |
| 33 | icon?: string |
| 34 | children?: MenuItem[] |
| 35 | } |
| 36 | |
| 37 | const menus: MenuItem[] = [ |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected