import { LinkProps } from '@remix-run/react'; export default function Link(props: LinkProps & { to: string }) { return ( {props.children} ); }