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

15 lines
327 B
Plaintext

```ts
// YourComponent.stories.ts
import { html } from 'lit';
import type { Meta } from '@storybook/web-components';
const meta: Meta<YourComponentProps> = {
title: 'YourComponent',
component: 'demo-your-component',
decorators: [(story) => html`<div style="margin: 3em">${story()}</div>`],
};
export default meta;
```