mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:01:05 +08:00
15 lines
336 B
Plaintext
15 lines
336 B
Plaintext
```html
|
|
<-- Button.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Story } from '../src/index.js';
|
|
import { action } from '@storybook/addon-actions';
|
|
import Button from './Button.svelte';
|
|
</script>
|
|
|
|
<Meta title="Button" component={Button}/>
|
|
|
|
<Story name="Text">
|
|
<Button text="Custom text" on:click={action('clicked')}/>
|
|
</Story>
|
|
``` |