storybook/docs/snippets/web-components/list-story-starter.js.mdx

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>`
```