mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
22 lines
544 B
TypeScript
22 lines
544 B
TypeScript
|
import React from 'react';
|
||
|
import { Button, Col, Row, Statistic } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Row gutter={16}>
|
||
|
<Col span={12}>
|
||
|
<Statistic title="Active Users" value={112893} />
|
||
|
</Col>
|
||
|
<Col span={12}>
|
||
|
<Statistic title="Account Balance (CNY)" value={112893} precision={2} />
|
||
|
<Button style={{ marginTop: 16 }} type="primary">
|
||
|
Recharge
|
||
|
</Button>
|
||
|
</Col>
|
||
|
<Col span={12}>
|
||
|
<Statistic title="Active Users" value={112893} loading />
|
||
|
</Col>
|
||
|
</Row>
|
||
|
);
|
||
|
|
||
|
export default App;
|