mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
20 lines
326 B
Plaintext
20 lines
326 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
//👇 Creates specific parameters for the story
|
|
parameters: {
|
|
myAddon: {
|
|
data: 'this data is passed to the addon',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Basic = (args) => ({
|
|
Component: Button,
|
|
props: args,
|
|
});
|
|
``` |