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