mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
38 lines
672 B
Plaintext
38 lines
672 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
|
|
import { html } from 'lit';
|
|
|
|
const meta: Meta = {
|
|
title: 'List',
|
|
component: 'demo-list',
|
|
};
|
|
export default meta;
|
|
|
|
type Story = StoryObj;
|
|
|
|
export const Empty: Story = {
|
|
render: () => html`<demo-list></demo-list>`,
|
|
};
|
|
|
|
export const OneItem: Story = {
|
|
render: () => html`
|
|
<demo-list>
|
|
<demo-list-item></demo-list-item>
|
|
</demo-list>
|
|
`,
|
|
};
|
|
|
|
export const ManyItems: Story = {
|
|
render: () => html`
|
|
<demo-list>
|
|
<demo-list-item></demo-list-item>
|
|
<demo-list-item></demo-list-item>
|
|
<demo-list-item></demo-list-item>
|
|
</demo-list>
|
|
`,
|
|
};
|
|
```
|