responsive grid using antd

Solutions on MaxInterview for responsive grid using antd by the best coders in the world

showing results for - "responsive grid using antd"
Jacob
13 Jan 2020
1import 'antd/dist/antd.css';
2import { Row, Col } from 'antd';
3
4  <Row>
5    <Col xs={24} xl={8}>
6      One of three columns
7    </Col>
8    <Col xs={24} xl={8}>
9      One of three columns
10    </Col>
11    <Col xs={24} xl={8}>
12      One of three columns
13    </Col>
14  </Row>
15
Lars
02 Jul 2019
1  <div className="ant-row">
2    <div className="ant-col ant-col-xs-24 ant-col-xl-8">
3      One of three columns
4    </div>
5    <div className="ant-col ant-col-xs-24 ant-col-xl-8">
6      One of three columns
7    </div>
8    <div className="ant-col ant-col-xs-24 ant-col-xl-8">
9      One of three columns
10    </div>
11  </div>
12