storybook/docs/snippets/angular/list-story-with-subcomponents.ts.mdx
2021-11-04 23:10:45 +00:00

43 lines
910 B
Plaintext

```ts
// List.stories.ts
import { Meta, moduleMetadata, Story } from '@storybook/angular';
import { CommonModule } from '@angular/common';
import { List } from './list.component';
import { ListItem } from './list-item.component';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'List',
component: List,
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
decorators: [
moduleMetadata({
declarations: [List, ListItem],
imports: [CommonModule],
}),
],
} as Meta;
export const Empty: Story = () => ({
props: {
args,
},
});
export const OneItem: Story = () => ({
props: {
args,
},
template: `
<app-list>
<app-list-item></app-list-item>
</app-list>
`,
});
```