mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:32:02 +08:00
30 lines
446 B
Plaintext
30 lines
446 B
Plaintext
```mdx
|
|
{/* DocumentationTemplate.mdx */}
|
|
|
|
import { Title, Subtitle, Description, Primary, PRIMARY_STORY, ArgsTable, Stories } from '@storybook/blocks';
|
|
|
|
<Title/>
|
|
|
|
<Subtitle/>
|
|
|
|
<Description/>
|
|
|
|
# Starter example
|
|
|
|
<Primary/>
|
|
|
|
## Component inputs
|
|
|
|
The component accepts the following inputs (props):
|
|
|
|
<ArgsTable of={PRIMARY_STORY}/>
|
|
|
|
---
|
|
|
|
## Additional examples
|
|
|
|
Listed below are some additional examples of how to use the component.
|
|
|
|
<Stories/>
|
|
```
|