A collection of Custom React hooks written in TypeScript to support proper type declarations.
yarn add custom-react-ts-hooks
# or
npm add custom-react-ts-hooks
Check each hook page for specific usage information and all parameters.
Example usage
import { useEventListener } from 'custom-react-ts-hooks';
...
useEventListener(htmlDivRef,'wheel', (event) => {
});