storybook/docs/snippets/web-components/list-story-unchecked.ts.mdx
Kyle Gach 2cee61b651 Update snippets to CSF 3
- Fix some minor errors
2022-12-05 12:37:36 -07:00

25 lines
662 B
Plaintext

```ts
// my-list.stories.ts|tsx
import { html } from 'lit';
import type { StoryObj } from '../../IStory';
import { IList } from './my-list.custom';
import './my-list';
//👇 Instead of importing my-list-item, we import the stories
import { Unchecked } from './my-list-item.stories';
const meta: Meta<typeof Button> = {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/web-components/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'my-list',
};
export const OneItem: Story<IList> = {
render: () => html` <List> ${Unchecked({ ...Unchecked.args })} </List> `,
};
```