(props: React.ComponentPropsWithoutRef<'nav'>)
| 337 | ] |
| 338 | |
| 339 | export function Navigation(props: React.ComponentPropsWithoutRef<'nav'>) { |
| 340 | return ( |
| 341 | <nav {...props}> |
| 342 | <ul role="list"> |
| 343 | {navigation.map((group, groupIndex) => ( |
| 344 | <NavigationGroup |
| 345 | key={group.title} |
| 346 | group={group} |
| 347 | className={groupIndex === 0 ? 'md:mt-0' : ''} |
| 348 | /> |
| 349 | ))} |
| 350 | </ul> |
| 351 | </nav> |
| 352 | ) |
| 353 | } |
nothing calls this directly
no outgoing calls
no test coverage detected