1.0.5 • Published 2 years ago

use-click-outside-close v1.0.5

Weekly downloads
10
License
ISC
Repository
github
Last release
2 years ago

React hook to execute callback when a click is happened outside of html element.

Install

yarn add use-click-outside-close

Usage

import React, { useRef } from 'react';
import useClickOutside from 'use-click-outside';

const Modal = ({ onClose }) => {
  const ref = useRef();
  useClickOutside(ref, onClose);

  return <div ref={ref}>Hello, World!</div>;
};

Or if you need a custom event type instead of default 'click', third parameter can be passed:

  useClickOutside(ref, handler);

Show your support

Give a ⭐️ if this project helped you!