storybook/docs/snippets/web-components/list-story-starter.js.mdx
Kyle Gach b97d94e005 Address feedback
- Newline following filename comment
- Fix URLs in comments
- Ensure consistent usage of `ts` vs `tsx` language
2023-01-12 14:17:39 -07:00

16 lines
248 B
Plaintext

```js
// List.stories.js
import { html } from 'lit-html';
export default {
title: 'List',
component: 'demo-list',
};
// Always an empty list, not super interesting
export const Empty = {
render: () => html`<demo-list></demo-list>`,
};
```