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