Home > @datashaper/app-framework > useOnOutsideClick
Hook that alerts clicks outside of the passed ref
Signature:
export declare function useOnOutsideClick(ref: MutableRefObject<HTMLElement | null>, onClickOutside: () => void): void;| Parameter | Type | Description |
|---|---|---|
| ref | MutableRefObject<HTMLElement | null> | |
| onClickOutside | () => void |
Returns:
void