CoastalCommitsPastes/client/components/Link.tsx

10 lines
274 B
TypeScript
Raw Normal View History

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