mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
28 lines
608 B
Plaintext
28 lines
608 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
|
|
import { html } from 'lit';
|
|
|
|
// 👇 We're importing the necessary stories from ListItem
|
|
import { Selected, Unselected } from './ListItem.stories';
|
|
|
|
const meta: Meta = {
|
|
title: 'List',
|
|
component: 'demo-list',
|
|
};
|
|
export default meta;
|
|
|
|
type Story = StoryObj;
|
|
|
|
export const ManyItems: Story = {
|
|
render: (args) => html`
|
|
<demo-list>
|
|
${Selected({ ...args, ...Selected.args })} ${Unselected({ ...args, ...Unselected.args })}
|
|
${Unselected({ ...args, ...Unselected.args })}
|
|
</demo-list>
|
|
`,
|
|
};
|
|
```
|