mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
14 lines
422 B
Plaintext
14 lines
422 B
Plaintext
```html
|
|
<!-- Button.stories.svelte-->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Button from './Button.svelte';
|
|
</script>
|
|
|
|
<!-- 👇 Creates specific parameters for the story -->
|
|
<Meta title="Button" component={Button} parameters={{ backgrounds: { values: [ { name: 'red', value:
|
|
'#f00', }, { name: 'green', value: '#0f0', }, { name: 'blue', value: '#00f', }, ] } }} />
|
|
```
|