Home / Function/ NavigationMenuGuideListWrapper() — supabase Function Reference

NavigationMenuGuideListWrapper() — supabase Function Reference

Architecture documentation for the NavigationMenuGuideListWrapper() function in NavigationMenuGuideList.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/docs/components/Navigation/NavigationMenu/NavigationMenuGuideList.tsx lines 83–102

export function NavigationMenuGuideListWrapper({
  id,
  firstLevelRoute,
  children,
}: PropsWithChildren<{
  id: string
  firstLevelRoute?: string
}>) {
  return (
    <Accordion.Root
      collapsible={true}
      key={id}
      type="single"
      value={firstLevelRoute}
      className="transition-all duration-150 ease-out opacity-100 ml-0 delay-150 w-full"
    >
      {children}
    </Accordion.Root>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free