storybook/docs/snippets/web-components/list-story-unchecked.js.mdx
Kyle Gach b97d94e005 Address feedback
- Newline following filename comment
- Fix URLs in comments
- Ensure consistent usage of `ts` vs `tsx` language
2023-01-12 14:17:39 -07:00

18 lines
331 B
Plaintext

```js
// MyList.stories.js
import { html } from 'lit-html';
// 👇 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> `,
};
```