import type { PropsWithChildren } from "react"; import { Link } from "@remix-run/react"; export default function NavLink({ href, children }: PropsWithChildren<{ href: string }>) { return ( {children} ); }