storybook/docs/snippets/web-components/your-component-with-decorator.js.mdx

13 lines
225 B
Plaintext

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