UNPKG

@jigoooo/shared-ui

Version:

A reusable React component library and design system with TypeScript support, built on Vite for seamless integration and optimized performance.

6 lines (5 loc) 291 B
/** * ResizeObserver를 사용하여 요소의 너비를 효율적으로 측정하는 훅 * useEffect + offsetWidth보다 성능이 좋고 동적 크기 변화를 감지할 수 있음 */ export declare function useElementWidth(): readonly [number, (element: HTMLElement | null) => void];