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