mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 17:59:57 +08:00
19 lines
335 B
TypeScript
19 lines
335 B
TypeScript
|
import React from 'react';
|
||
|
import { Col, Row } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Row>
|
||
|
<Col xs={2} sm={4} md={6} lg={8} xl={10}>
|
||
|
Col
|
||
|
</Col>
|
||
|
<Col xs={20} sm={16} md={12} lg={8} xl={4}>
|
||
|
Col
|
||
|
</Col>
|
||
|
<Col xs={2} sm={4} md={6} lg={8} xl={10}>
|
||
|
Col
|
||
|
</Col>
|
||
|
</Row>
|
||
|
);
|
||
|
|
||
|
export default App;
|