mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
435 B
435 B
order | title | ||||
---|---|---|---|---|---|
0 |
|
zh-CN
标准的进度条。
en-US
A standard progress bar.
import { Progress } from 'antd';
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
);