import NextLink, { LinkProps as NextLinkProps } from 'next/link' const Link: React.FC = ({ href, children, ...props }) => { return ( {children} ) } export default Link