Vladimir 41beb261e6
feat: deprecate workspace in favor of projects (#7923)
Co-authored-by: Ari Perkkiö <ari.perkkio@gmail.com>
2025-05-05 18:49:26 +02:00

33 lines
602 B
TypeScript

import React, { useState } from 'react'
const STATUS = {
HOVERED: 'hovered',
NORMAL: 'normal',
}
function Link({ page, children }: React.PropsWithChildren<{ page: string }>) {
const [status, setStatus] = useState(STATUS.NORMAL)
const onMouseEnter = () => {
setStatus(STATUS.HOVERED)
}
const onMouseLeave = () => {
setStatus(STATUS.NORMAL)
}
return (
<a
className={status}
href={page || '#'}
aria-label={`Link is ${status}`}
onMouseEnter={onMouseEnter}
onMouseLeave={onMouseLeave}
>
{children}
</a>
)
}
export default Link