mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 03:11:49 +08:00
12 lines
248 B
Plaintext
12 lines
248 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
export default {
|
|
component: Button,
|
|
//👇 Title is optional, you can omit it and Storybook automatically generates the title for the story
|
|
title: 'Components/Button',
|
|
};
|
|
```
|