mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
16 lines
287 B
Plaintext
16 lines
287 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>
|
|
```
|