@j-hooks/use-hover
React Hook to detect a hover on an any React Element
Installation
yarn
yarn add @j-hooks/use-hover
npm
npm i @j-hooks/use-hover
Usage
import React from "react";
import useHover from "@j-hooks/use-hover";
function App() {
const onHover = () => console.log("Somebody hovered!");
const markedRef = useClick(onHover);
return <h1 ref={markedRef}>Hello j-hooks</h1>;
}
Arguments
Argument | Type | Description | Required |
---|---|---|---|
onHover | function | Function to be called when the element is hovered | yes |
Return
Return value | Type | Description | Default value |
---|---|---|---|
ref | React Ref | A React Ref listening to the hover event, add it to any element | null |