import React from 'react'; import { Link } from '@inertiajs/react'; export function NavItem({ href, active, children }) { return ( {children} ); } export function NavDropdown({ name, items }) { const active = items.find(act => act.route === route().current()) return (