storybook/docs/snippets/svelte/button-story-click-handler.native-format.mdx
2022-11-17 16:33:22 +01:00

16 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>
```