Merge pull request #17531 from oligafner/add-a-good-old-web-component-snippet

add list-story-unchecked snippet
This commit is contained in:
jonniebigodes 2022-02-21 23:34:45 +00:00 committed by GitHub
commit 4aa1f9944c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,24 @@
```js
// my-list.stories.js|jsx
import { html } from 'lit';
import './my-list';
//👇 Instead of importing my-list-item, we import the stories
import { Unchecked } from './my-list-item.stories';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/web-components/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'my-list',
};
export const OneItem = () => html`
<List>
${Unchecked({ ...Unchecked.args })}
</List>
`;
```

View File

@ -0,0 +1,26 @@
```ts
// my-list.stories.ts|tsx
import { html } from 'lit';
import { Story } 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';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/web-components/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'my-list',
};
export const OneItem: Story<IList> = () => html`
<List>
${Unchecked({ ...Unchecked.args })}
</List>
`;
```

View File

@ -42,6 +42,8 @@ The simplest change we can make to the above is to reuse the stories of the `Lis
'vue/list-story-unchecked.2.js.mdx',
'vue/list-story-unchecked.3.js.mdx',
'angular/list-story-unchecked.ts.mdx',
'web-components/list-story-unchecked.js.mdx',
'web-components/list-story-unchecked.ts.mdx',
]}
/>