You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
394 B
19 lines
394 B
2 years ago
|
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;
|