mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
15 lines
234 B
Plaintext
15 lines
234 B
Plaintext
```js
|
|
// demo-list.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './demo-list';
|
|
|
|
export default {
|
|
title: 'List',
|
|
};
|
|
|
|
// Always an empty list, not super interesting
|
|
const Template = (args) => html`<demo-list></demo-list>`
|
|
```
|