mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 07:31:19 +08:00
12 lines
226 B
Plaintext
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>`],
|
|
};
|
|
```
|