| import React from 'react'; | |
| import { Col, Row } from 'antd'; | |
| const App: React.FC = () => ( | |
| <Row> | |
| <Col xs={{ span: 5, offset: 1 }} lg={{ span: 6, offset: 2 }}> | |
| Col | |
| </Col> | |
| <Col xs={{ span: 11, offset: 1 }} lg={{ span: 6, offset: 2 }}> | |
| Col | |
| </Col> | |
| <Col xs={{ span: 5, offset: 1 }} lg={{ span: 6, offset: 2 }}> | |
| Col | |
| </Col> | |
| </Row> | |
| ); | |
| export default App; | |