1.0.2 • Published 7 years ago

react-hoc-dimensions v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

react-hoc-dimensions

A higher-order component that can be used to passing the window dimensions into your component as props.

Installation

npm i --save react-hoc-dimensions

Basic Usage

import React from 'react';
import windowDimensions from 'react-hoc-dimensions';

class Page extends Component {
  render() {
    return (
      <div className="page">
        {this.props.windowWidth < 575
          ? <div> Mobile content </div>
          : <div> Tablet or desktop content </div>
        }
      </div>
    );
  }
}

export default windowDimensions(Page);

Contributing

Pull requests are welcome. You can check that your changes correspond to the code style by running the lint command:

npm run lint
1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago