mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
16 lines
243 B
Plaintext
16 lines
243 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
import { html } from 'lit';
|
|
|
|
export default {
|
|
title: 'List',
|
|
component: 'demo-list',
|
|
};
|
|
|
|
// Always an empty list, not super interesting
|
|
export const Empty = {
|
|
render: () => html`<demo-list></demo-list>`,
|
|
};
|
|
```
|