mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
17 lines
347 B
Plaintext
17 lines
347 B
Plaintext
```html
|
|
<!-- Button.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import Button from './Button.svelte';
|
|
</script>
|
|
|
|
<Meta title="Button" component={Button}/>
|
|
|
|
<Story name="Text">
|
|
<Button text="Hello" on:click={action('clicked')}/>
|
|
</Story>
|
|
``` |