MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / Navigation

Function Navigation

src/components/Navigation.tsx:339–353  ·  view source on GitHub ↗
(props: React.ComponentPropsWithoutRef<'nav'>)

Source from the content-addressed store, hash-verified

337]
338
339export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected