Material UI and Grid system

后端 未结 7 1156
再見小時候
再見小時候 2020-12-12 12:54

I\'m playing a little bit with Material-UI. Are there any options for creating a grid layout (like in Bootstrap)?

If not, what is the way to add this functionality?

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-12 13:02

    I hope this is not too late to give a response.

    I was also looking for a simple, robust, flexible and highly customizable bootstrap like react grid system to use in my projects.

    The best I know of is react-pure-grid https://www.npmjs.com/package/react-pure-grid

    react-pure-grid gives you the power to customize every aspect of your grid system, while at the same time it has built in defaults which probably suits any project

    Usage

    npm install react-pure-grid --save
    

    -

    import {Container, Row, Col} from 'react-pure-grid';
    
    const App = () => (
          
            
              Hello, world!
            
            
                Welcome!
            
          
    );
    

提交回复
热议问题