6 lines
125 B
TypeScript
6 lines
125 B
TypeScript
import { CustomLink } from './customLink';
|
|
|
|
export function HomeLink() {
|
|
return <CustomLink path={`/`} text={`Home`} />;
|
|
}
|