mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
17 lines
406 B
TypeScript
17 lines
406 B
TypeScript
|
import React from 'react';
|
||
|
import { LikeOutlined } from '@ant-design/icons';
|
||
|
import { Col, Row, Statistic } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Row gutter={16}>
|
||
|
<Col span={12}>
|
||
|
<Statistic title="Feedback" value={1128} prefix={<LikeOutlined />} />
|
||
|
</Col>
|
||
|
<Col span={12}>
|
||
|
<Statistic title="Unmerged" value={93} suffix="/ 100" />
|
||
|
</Col>
|
||
|
</Row>
|
||
|
);
|
||
|
|
||
|
export default App;
|