man/components/CustomLink.js

17 lines
289 B
JavaScript
Raw Normal View History

2022-10-12 22:06:54 +02:00
import Link from 'next/link'
export default function CustomLink({ as, href, ...otherProps }) {
return (
<>
<Link as={as} href={href}>
<a {...otherProps} />
</Link>
<style jsx>{`
a {
color: tomato;
}
`}</style>
</>
)
}