storybook/docs/snippets/svelte/your-component-with-decorator.js.mdx
2023-12-04 21:23:56 +00:00

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],
};
```