A growing collection of custom React hooks, built by Cixel.
npm install cixel-hooks
Tip
The useEventListener
hook attaches to window
or document
based on the event if ref
is omitted.
import { useEventListener } from 'cixel-hooks'
function Component() {
useEventListener('resize', onResize)
}