mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
|
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;
|