UNPKG

etc-hooks

Version:
13 lines (12 loc) 347 B
import { useEffect } from "react"; export default function useWindowEvent(type, listener, options) { useEffect(function() { window.addEventListener(type, listener, options); return function() { return window.removeEventListener(type, listener, options); }; }, [ type, listener ]); }