http://flexboxgrid.com/
类似于 Bootstrap栅格,目前的 antd栅格以满足开发需求,这个作为个学习的参考
image.png

react-flexbox-grid

https://roylee0704.github.io/react-flexbox-grid
基于 flexbox-grid的 react组件化封装
image.png

  1. // install
  2. yarn add react-flexbox-grid
  3. import React from 'react';
  4. import { Grid, Row, Col } from 'react-flexbox-grid';
  5. function App() {
  6. return (
  7. <Grid fluid>
  8. <Row>
  9. <Col xs={6} md={3}>
  10. Hello, world!
  11. </Col>
  12. </Row>
  13. </Grid>
  14. );
  15. }