storybook/docs/snippets/web-components/list-story-unchecked.ts.mdx
2023-02-16 09:13:06 +08:00

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> `,
};
```