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.

55 lines
1.2 KiB

---
order: 99
debug: true
title:
zh-CN: Steps 嵌套 Steps
en-US: Steps inside Steps
---
## zh-CN
测试 Steps 嵌套 Steps 的样式。
## en-US
Test style of Steps inside Steps.
```jsx
import React, { useState } from 'react';
import { Steps, Radio, Card } from 'antd';
const { Step } = Steps;
const App = () => {
const [size, setSize] = useState('default');
const horizontalSteps = (
<Card>
<Steps size={size}>
<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." />
</Steps>
</Card>
);
return (
<>
<Radio.Group
style={{ marginBottom: 16 }}
value={size}
onChange={e => setSize(e.target.value)}
>
<Radio value="small">Small</Radio>
<Radio value="default">Default</Radio>
</Radio.Group>
<Steps size={size} direction="vertical">
<Step title="Finished" description={horizontalSteps} />
<Step title="In Progress" description="This is a description." />
<Step title="Waiting" description="This is a description." />
</Steps>
</>
);
};
export default () => <App />;
```