mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
- Newline following filename comment - Fix URLs in comments - Ensure consistent usage of `ts` vs `tsx` language
16 lines
248 B
Plaintext
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>`,
|
|
};
|
|
```
|