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