mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 13:09:40 +08:00
16 lines
260 B
TypeScript
16 lines
260 B
TypeScript
|
import React from 'react';
|
||
|
import { Col, Row } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Row>
|
||
|
<Col span={18} push={6}>
|
||
|
col-18 col-push-6
|
||
|
</Col>
|
||
|
<Col span={6} pull={18}>
|
||
|
col-6 col-pull-18
|
||
|
</Col>
|
||
|
</Row>
|
||
|
);
|
||
|
|
||
|
export default App;
|