react-flexgrid
v1.0.0
Published
Flexbox grid for react apps
Downloads
1,364
Maintainers
Readme
React Flexgrid
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