Reactjs Grid example
Example: react grid
npm install react-grid-system --save
// yarn
yarn add react-grid-system
// example
import { Container, Row, Col } from 'react-grid-system';
<Container>
<Row>
<Col sm={4}>
One of three columns
</Col>
<Col sm={4}>
One of three columns
</Col>
<Col sm={4}>
One of three columns
</Col>
</Row>
</Container>