ant-design/components/progress/demo/dashboard.md

25 lines
253 B
Markdown
Raw Normal View History

---
order: 8
title:
zh-CN: 仪表盘
en-US: Dashboard
---
## zh-CN
仪表盘。
## en-US
A dashboard.
````jsx
import { Progress } from 'antd';
ReactDOM.render(
<div>
<Progress type="dashboard" percent={75} />
</div>
, mountNode);
````