storybook/docs/snippets/web-components/your-component-with-decorator.js.mdx
2021-11-09 01:41:54 +00:00

12 lines
222 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>`],
}
```