Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Latest commit

 

History

History
25 lines (15 loc) · 653 Bytes

File metadata and controls

25 lines (15 loc) · 653 Bytes

Home > @datashaper/app-framework > useOnOutsideClick

useOnOutsideClick() function

Hook that alerts clicks outside of the passed ref

Signature:

export declare function useOnOutsideClick(ref: MutableRefObject<HTMLElement | null>, onClickOutside: () => void): void;

Parameters

Parameter Type Description
ref MutableRefObject<HTMLElement | null>
onClickOutside () => void

Returns:

void