You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
435 B

---
order: 0
title:
zh-CN: 进度条
en-US: Progress bar
---
10 years ago
## zh-CN
标准的进度条。
10 years ago
## en-US
A standard progress bar.
````jsx
import { Progress } from 'antd';
10 years ago
9 years ago
ReactDOM.render(
<div>
<Progress percent={30} />
<Progress percent={50} status="active" />
<Progress percent={70} status="exception" />
<Progress percent={100} />
<Progress percent={50} showInfo={false} />
</div>,
mountNode
);
10 years ago
````