Repository URL to install this package:
|
Version:
0.0.0 ▾
|
import Link, { LinkProps } from 'next/link'
import { FC } from 'react'
export type InternalLinkProps = LinkProps & {
className?: string | undefined
children?: React.ReactNode
}
export const Internal: FC<InternalLinkProps> = ({ href, ...rest }) => {
return <Link href={href} {...rest} />
}