ant-design/components/statistic/demo/basic.md
2019-05-07 14:57:32 +08:00

526 B

order title
0
zh-CN en-US
基本 Basic

zh-CN

简单的展示。

en-US

Simplest Usage.

import { Statistic, Row, Col, Button } from 'antd';

ReactDOM.render(
  <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>
  </Row>,
  mountNode,
);