Files
www_veda_2025/src/components/link.jsx
2025-08-18 22:33:54 +02:00

15 lines
265 B
JavaScript

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>
)
}