mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
22 lines
401 B
Plaintext
22 lines
401 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
<!-- 👇 Creates specific argTypes and turns all stories into primary -->
|
|
|
|
<Meta title="Button"
|
|
component={Button}
|
|
argTypes={{
|
|
backgroundColor: {
|
|
control: 'color',
|
|
},
|
|
}},
|
|
args={{
|
|
primary: true,
|
|
}}/>
|
|
|
|
<!-- Remainder story implementation -->
|
|
``` |