react-window-size
Version:
React HOC that passes browser window size to wrapped component
27 lines (19 loc) • 503 B
Markdown
# React Window Size
A higher-order React component that passes the browser window's dimensions as props to the wrapped component.
Example:
```javascript
import React, { Component } from 'react';
import windowSize from 'react-window-size';
class ScreenSize extends Component {
render() {
return (
<p>
Screen width is: {this.props.windowWidth}
<br />
Screen height is: {this.props.windowHeight}
</p>
);
}
}
export default windowSize(ScreenSize);
```