import { Link, InertiaLinkProps } from '@inertiajs/react'; export default function NavLink({ active = false, className = '', children, ...props }: InertiaLinkProps & { active: boolean }) { return ( {children} ); }