Files
newsletter-hackernews/components/elements/customLink.tsx
2023-12-04 16:18:35 +01:00

15 lines
268 B
TypeScript

import Link from 'next/link';
type CustomLinkProps = {
path: string;
text: string;
};
export function CustomLink({ path, text }: CustomLinkProps) {
return (
<Link href={path} className="overflow-hidden rounded-md">
<h1>{text}</h1>
</Link>
);
}