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

18 lines
326 B
Plaintext

```js
// MyList.stories.js
import { html } from 'lit';
// 👇 Import the stories of MyListItem
import { Unchecked } from './MyListItem.stories';
export default {
title: 'MyList',
component: 'demo-my-list',
};
export const OneItem = {
render: () => html` <List> ${Unchecked({ ...Unchecked.args })} </List> `,
};
```