mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
15 lines
224 B
Plaintext
15 lines
224 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
export const Primary = () => ({
|
|
Component: Button,
|
|
props: {
|
|
primary: true,
|
|
label: 'Button',
|
|
},
|
|
});
|
|
|
|
Primary.storyName = 'I am the primary';
|
|
``` |