useMeasure ​
Hook to measure the size and position of an element
typescript
import { useMeasure } from '@siberiacancode/reactuse';
Usage ​
typescript
const { x, y, width, height, top, left, bottom, right } = useMeasure(ref);
// or
const { ref, x, y, width, height, top, left, bottom, right } = useMeasure();