mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
19 lines
306 B
Plaintext
19 lines
306 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
export default {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
}
|
|
|
|
const Template = (args) => ({ Component: Button, props: args });
|
|
|
|
export const Primary = Template.bind({});
|
|
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Button',
|
|
};
|
|
``` |