mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 19:58:12 +00:00
493 B
493 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 0 |
|
zh-CN
简单的步骤条。
en-US
The most basic step bar.
import { Steps } from 'antd';
const { Step } = Steps;
ReactDOM.render(
<Steps current={1}>
<Step title="Finished" description="This is a description." />
<Step title="In Progress" subTitle="Left 00:00:08" description="This is a description." />
<Step title="Waiting" description="This is a description." />
</Steps>,
mountNode,
);