mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
22 lines
436 B
Plaintext
22 lines
436 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
<Meta title="Components/Button" component={Button} />
|
|
|
|
<!-- The render function is a framework specific construct to tell how the story should render -->
|
|
|
|
<Story
|
|
name="Primary"
|
|
args={{
|
|
primary: true,
|
|
label: 'Button',
|
|
}}
|
|
render={(args) => ({
|
|
Component: Button,
|
|
props:args,
|
|
})} />
|
|
``` |