mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
23 lines
371 B
Plaintext
23 lines
371 B
Plaintext
```html
|
|
<!-- Button.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Button from './Button.svelte';
|
|
</script>
|
|
|
|
<Meta
|
|
title="Button"
|
|
component={Button}
|
|
parameters={{
|
|
myAddon: {
|
|
data: 'this data is passed to the addon',
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Template let:args>
|
|
<Button {...args} />
|
|
</Template>
|
|
``` |