React flexboxgrid components included flexboxgrid.min.css and normalize.css
meteor add lifefilm:react-flexbox-grid
import { Grid, Row, Col } from 'meteor/lifefilm:react-flexbox-grid';
const App = React.createClass({
render() {
return (
<Grid>
<Row>
<Col xs={6} md={3}>Hello, world!</Col>
</Row>
</Grid>
);
}
});
https://github.com/kristoferjoseph/flexboxgrid
based on: