Function: useElementHeight()
useElementHeight(
ref):number
Defined in: hooks/useElementHeight/index.tsx:13
useElementHeight
Parameters
ref
RefObject<HTMLElement>
A ref to the element to measure.
Returns
number
The current height of the element.
Description
A custom hook that tracks the height of a DOM element, updating on resize and content changes.
Example
const myRef = useRef(null);
const height = useElementHeight(myRef);
<div ref={myRef}>Height is {height}px</div>