nkt / react-flexgrid

Flexbox grid for react apps

Home Page:https://nkt.github.io/react-flexgrid/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Flexbox grid for react apps

https://nkt.github.io/react-flexgrid/


Languages

Language:CSS 61.1%Language:JavaScript 38.9%