ok rm gitignore
This commit is contained in:
14
public/images/components/link.jsx
Normal file
14
public/images/components/link.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import NextLink from 'next/link'
|
||||
import { clsx } from 'clsx'
|
||||
|
||||
export function Link({ href, className, children, ...props }) {
|
||||
return (
|
||||
<NextLink
|
||||
href={href}
|
||||
className={clsx(className)}
|
||||
{...props}
|
||||
>
|
||||
{children}
|
||||
</NextLink>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user