mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:21:06 +08:00
22 lines
544 B
Plaintext
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' }}/>
|
|
```
|