Implment a custom hook useHover that returns a ref and a boolean indicating whether the element with that ref is hovered or not. When the element is hovered, the hook should set the boolean to true.
useHover
ref
boolean
true
const { hovered, ref } = useHover();