Skip to content

Instantly share code, notes, and snippets.

@chetanraj
Created August 10, 2021 15:15
Show Gist options
  • Save chetanraj/4b499afdcc51198a056cf839eee8449f to your computer and use it in GitHub Desktop.
Save chetanraj/4b499afdcc51198a056cf839eee8449f to your computer and use it in GitHub Desktop.
useOnClickOutside
import useOnClickOutside from 'use-onclickoutside'
export default function Modal({ close }) {
const ref = React.useRef(null)
useOnClickOutside(ref, close)
return <div ref={ref}>{'Modal content'}</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment