mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
20 lines
253 B
Plaintext
20 lines
253 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
export default {
|
|
component: Button,
|
|
};
|
|
|
|
export const Primary = {
|
|
render: () => ({
|
|
Component: Button,
|
|
props: {
|
|
primary: true,
|
|
label: 'Button',
|
|
},
|
|
}),
|
|
};
|
|
```
|