```ts // List.stories.ts import type { Meta, StoryObj } from '@storybook/web-components'; import { html } from 'lit-html'; const meta: Meta = { title: 'List', component: 'demo-list', }; export default meta; type Story = StoryObj; export const Empty: Story = { render: () => html``, }; export const OneItem: Story = { render: () => html` `, }; export const ManyItems: Story = { render: () => html` `, }; ```