mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
23 lines
406 B
Plaintext
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')}
|
|
}
|
|
});
|
|
``` |