storybook/docs/snippets/web-components/your-component-with-decorator.js.mdx
2023-02-16 09:13:06 +08:00

12 lines
226 B
Plaintext

```js
// YourComponent.stories.js
import { html } from 'lit';
export default {
title: 'YourComponent',
component: 'demo-your-component',
decorators: [(story) => html`<div style="margin: 3em">${story()}</div>`],
};
```