import { Link } from "@tanstack/react-router"; type NavLinkProps = { to: string; children: React.ReactNode }; const NavLink = ({ to, children }: NavLinkProps) => { return ( {children} ); }; export default NavLink;