mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-11 00:06:25 +08:00
13 lines
236 B
Plaintext
13 lines
236 B
Plaintext
```js
|
|
// YourComponent.stories.js
|
|
|
|
import YourComponent from './YourComponent.svelte';
|
|
|
|
import MarginDecorator from './MarginDecorator.svelte';
|
|
|
|
export default {
|
|
component: YourComponent,
|
|
decorators: [() => MarginDecorator],
|
|
};
|
|
```
|