0.7.3 • Published 2 years ago

react-flexgrid-no-bs-conflict v0.7.3

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

React Flexgrid

Circle CI

Installation

npm install react-flexgrid

Usage

Require lib/flexgrid.css, or less/flexgrid.less into your project.

const {Grid, Row, Col} = require('react-flexgrid');

const App = React.createClass({
  render() {
    return (
      <Grid>
        <Row>
          <Col xs={6} md={3}>Hello, world!</Col>
        </Row>
      </Grid>
    );
  }
});

License

MIT