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

6 lines
125 B
TypeScript

import { CustomLink } from './customLink';
export function HomeLink() {
return <CustomLink path={`/`} text={`Home`} />;
}