Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,32 +26,32 @@ The Steps component helps organize sequential content with automatic numbering,

<Tabs>
<Tab title="Multiple Steps">
<Steps>
<Step title="Getting Started" toc={true}>
<Steps toc={true}>
<Step title="Getting Started">
Initial instructions.
</Step>

<Step title="Configuration" toc={true}>
<Step title="Configuration">
More instructions.
</Step>

<Step title="Completion" toc={true}>
<Step title="Completion">
Final Instructions
</Step>
</Steps>
</Tab>
<Tab title="Markdown">
```jsx
<Steps>
<Step title="Getting Started" toc={true}>
<Steps toc={true}>
<Step title="Getting Started">
Initial instructions.
</Step>

<Step title="Configuration" toc={true}>
<Step title="Configuration">
More instructions.
</Step>

<Step title="Completion" toc={true}>
<Step title="Completion">
Final Instructions
</Step>
</Steps>
Expand Down