react-use/docs/useWindowSize.md
2018-10-27 03:07:40 +02:00

22 lines
319 B
Markdown

# `useWindowSize`
React sensor hook that tracks dimensions of the browser window.
## Usage
```jsx
import {useWindowSize} from 'react-use';
const Demo = () => {
const {width, height} = useWindowSize();
return (
<div>
<div>width: {width}</div>
<div>height: {height}</div>
</div>
);
};
```