2022-04-20 15:29:34 +05:00

12 lines
260 B
TypeScript

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