0.0.2 • Published 5 years ago

react-flexbox2-grid v0.0.2

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

react-flexbox2-grid

npm version NPM Status

react-flexbox2-grid is a shameless ripoff of the excellent react-flexbox-grid, updated to use flexboxgrid2.

Setup

Installation

react-flexbox2-grid can be installed as an npm package:

npm install --save react-flexbox2-grid

Usage

Now you can import and use the components:

import React from 'react';
import { Grid, Row, Col } from 'react-flexbox-grid';

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

Original Contributors

Roy LeeHelder SantanaMatija Marohnić
Roy LeeHelder SantanaMatija Marohnić

TODO

[] Actually add how this works to documentation [] Add full test-suite

License

ISC