1.0.1 • Published 5 years ago

react-use-window-size v1.0.1

Weekly downloads
192
License
MIT
Repository
github
Last release
5 years ago

useWindowSize - Custom React Hook

npm.io npm.io

A custom React Hook to get the window dimensions including resizing.

Useful for implementing responsive behavior, modifying elements for different screen sizes.

Install

$ npm install react-use-window-size

Usage

import useWindowSize from './useWindowSize';

const { width, height } = useWindowSize();

console.log(width, height); //Current window size i.e. 1366 768

License

MIT