mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
15 lines
327 B
Plaintext
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;
|
|
```
|