react-flexbox2-grid
v0.0.2
Published
A set of React components implementing flexboxgrid2
Downloads
3
Maintainers
Readme
react-flexbox2-grid
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 Lee | Helder Santana | Matija Marohnić
TODO
[] Actually add how this works to documentation [] Add full test-suite
License
ISC