Skip to content

ElForastero/use-click-outside

Repository files navigation

Welcome to use-click-outside 👋

Version

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

Install

yarn add use-click-outside

Usage

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

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

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

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

  useClickOutside(ref, onClose, 'mousedown');

Show your support

Give a ⭐️ if this project helped you!


This README was generated with ❤️ by readme-md-generator

About

React hook to detect clicks outside of the components. With shadow DOM support.

Resources

License

Stars

Watchers

Forks

Packages

No packages published