react-award
Version:
React component for rewarding users
10 lines (9 loc) • 386 B
TypeScript
/// <reference types="react" />
/**
* The "useHover" hook allows you to detect if the mouse is hovering over a specific element in a React component.
* It returns a reference to the element and a boolean value indicating whether the mouse is hovering over it or not.
*/
export declare function useHover(): [
React.MutableRefObject<HTMLDivElement | null>,
boolean
];