* Route configuration interface for menu items
| 34 | * Route configuration interface for menu items |
| 35 | */ |
| 36 | interface RouteConfig { |
| 37 | path: string; |
| 38 | Icon: React.ComponentType<{ className?: string }>; |
| 39 | labelKey: string; |
| 40 | order: number; |
| 41 | parentKey?: string | null; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Processed route with children for nested menus |
nothing calls this directly
no outgoing calls
no test coverage detected