CoastalCommitsPastes/client/components/Link.tsx
2022-03-06 17:25:23 -08:00

10 lines
No EOL
320 B
TypeScript

import { Link as GeistLink, LinkProps } from "@geist-ui/core"
import { useRouter } from "next/router";
const Link = (props: LinkProps) => {
const { basePath } = useRouter();
const href = basePath ? `/${basePath}/${props.href}` : props.href;
return <GeistLink {...props} href={href} />
}
export default Link