import grid code example
Example 1: 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>
Example 2: import grid
import Grid from '@material-ui/core/Grid';
// or
import { Grid } from '@material-ui/core';