A growing collection of custom React hooks, built by Cixel.
npm install cixel-hooks
[!TIP] The
useEventListener
hook attaches towindow
ordocument
based on the event ifref
is omitted.
import { useEventListener } from 'cixel-hooks'
function Component() {
useEventListener('resize', onResize)
}