storybook/docs/snippets/svelte/button-story-click-handler.js.mdx
2021-05-07 18:07:39 +01:00

23 lines
406 B
Plaintext

```js
// Button.stories.js
import Button from './Button.svelte';
import { action } from '@storybook/addon-actions';
export default {
title: 'Button',
component: Button,
};
export const Text = () =>({
//👇 This is the same component as the one used in the default export and it's optional
Component: Button,
props:{
label: 'Hello',
},
on:{
onClick={action('clicked')}
}
});
```