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