mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
434 B
434 B
order, title
| 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,
);