http://flexboxgrid.com/
类似于 Bootstrap栅格,目前的 antd栅格以满足开发需求,这个作为个学习的参考
react-flexbox-grid
https://roylee0704.github.io/react-flexbox-grid
基于 flexbox-grid的 react组件化封装
// install
yarn add react-flexbox-grid
import React from 'react';
import { Grid, Row, Col } from 'react-flexbox-grid';
function App() {
return (
<Grid fluid>
<Row>
<Col xs={6} md={3}>
Hello, world!
</Col>
</Row>
</Grid>
);
}