UNPKG

@ljcl/storybook-addon-cssprops

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