mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
15 lines
282 B
Plaintext
15 lines
282 B
Plaintext
```html
|
|
<!-- Button.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Button from './Button.svelte';
|
|
</script>
|
|
|
|
<Meta title="Button" component={Button} />
|
|
|
|
<Story name="Primary">
|
|
<Button primary=true label="Button" />
|
|
</Story>
|
|
``` |