1.0.3 • Published 4 years ago

react-dimensions-hook v1.0.3

Weekly downloads
439
License
ISC
Repository
github
Last release
4 years ago

react-dimensions-hook

This package allows you to measure the size of any HTML element inside one of your React functional components using hooks.

Usage

import { useDimensions } from 'react-dimensions-hook';

function MyComponent() {
  const { ref, dimensions } = useDimensions();

  return (
    <div
      ref={ref}
      style={{
        width: '500px',
        height: '100px',
        margin: '0 auto'
      }}
    >
      my size is {dimensions.width} × {dimensions.height}
    </div>
  );
}

Features

Attribution

While this package was written from scratch, inspiration was gained from react-dimensions, react-sizeme, and react-use-dimensions