import { Link } from '@inertiajs/react'; import { SidebarGroup, SidebarGroupLabel, SidebarMenu, SidebarMenuButton, SidebarMenuItem, } from '@/components/ui/sidebar'; import { useCurrentUrl } from '@/hooks/use-current-url'; import type { NavItem } from '@/types'; export function NavMain({ items = [] }: { items: NavItem[] }) { const { isCurrentUrl } = useCurrentUrl(); return ( Platform {items.map((item) => ( {item.icon && } {item.title} ))} ); }