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

22 lines
544 B
Plaintext

```html
<!-- Button.stories.svelte -->
<script>
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
import Button from './Button.svelte';
</script>
<!--
See https://storybook.js.org/docs/7.0/svelte/essentials/actions#action-argtype-annotation
to learn how to set up argTypes for actions
-->
<Meta title="Button" component={Button} argTypes={{ onClick: { action: "onClick" }, }} />
<template let:args>
<button {...args} on:click="{args.onClick}" />
</template>
<Story name="Text" args={{ label: 'Hello' }}/>
```