UNPKG

detect-outside-click-react

Version:

Wrapper component to detect outside click

21 lines (16 loc) 358 B
# detect-outside-click-react Wrapper component to detect outside click in React ## Setup ```bash npm install --save detect-outside-click-react yarn add detect-outside-click-react ``` ## Usage ```javascript import OutsideClick from 'detect-outside-click-react'; ... <OutsideClick close={() => { // anything here }}> {children} </OutsideClick> ... ```