mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
30 lines
481 B
Plaintext
30 lines
481 B
Plaintext
```js
|
|
// YourComponent.stories.js
|
|
|
|
import YourComponent from './YourComponent.svelte';
|
|
|
|
import MarginDecorator from './MarginDecorator.svelte';
|
|
|
|
export default {
|
|
component: YourComponent,
|
|
decorators: [() => MarginDecorator]
|
|
};
|
|
|
|
// Your templates and stories here.
|
|
// Don't forget to use the component you're testing and not the MarginDecorator component
|
|
|
|
```
|
|
|
|
```html
|
|
<!-- MarginDecorator.svelte -->
|
|
|
|
<div>
|
|
<slot/>
|
|
</div>
|
|
|
|
<style>
|
|
div {
|
|
margin: 3em;
|
|
}
|
|
</style>
|
|
``` |