UNPKG

@d3vtool/hooks

Version:

Collection of custom React hooks to simplify tasks in your React projects.

2 lines (1 loc) 303 B
"use strict";import{useEffect as r,useRef as o}from"react";export function useClickOutside(n){var e=o(null);function t(u){e.current&&!e.current.contains(u.target)&&n()}return r(function(){return document.addEventListener("pointerdown",t),function(){document?.addEventListener("pointerdown",t)}},[n]),e}