ant-design/components/steps/demo/simple.md

28 lines
467 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
2016-07-21 10:07:30 +08:00
title:
zh-CN: 基本用法
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-06-25 16:01:04 +08:00
2016-07-21 10:07:30 +08:00
## zh-CN
2015-06-26 10:46:21 +08:00
简单的步骤条。
2015-06-25 16:01:04 +08:00
2016-07-21 10:07:30 +08:00
## en-US
The most basic step bar.
2017-02-13 10:55:53 +08:00
````jsx
import { Steps } from 'antd';
const Step = Steps.Step;
2015-06-25 16:01:04 +08:00
2016-07-21 14:20:49 +08:00
ReactDOM.render(
<Steps current={1}>
2016-09-30 09:48:54 +08:00
<Step title="Finished" description="This is a description." />
<Step title="In Progress" description="This is a description." />
<Step title="Waiting" description="This is a description." />
2016-07-21 14:20:49 +08:00
</Steps>
, mountNode);
2015-06-25 20:01:20 +08:00
````