storybook/docs/snippets/web-components/list-story-starter.js.mdx
2021-11-09 01:41:54 +00:00

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