storybook/docs/snippets/web-components/list-story-starter.js.mdx
2023-02-16 09:13:06 +08:00

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>`,
};
```