useClickAway

Detect if a click event happened outside an element.

This is custom React hooks, you need to follow the Basic Rules when you use it.

General

Click outside the green card to trigger the callback.

APIs

useClickAway

const useClickAway = (
  ref: MutableRefObject<HTMLElement | null>,
  handler: (event: MouseEvent) => void,
) => void