react-use-window-size
v1.0.1
Published
Custom React Hook to get width of the browser window
Downloads
636
Maintainers
Readme
useWindowSize - Custom React Hook
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