storybook/docs/snippets/angular/list-story-with-subcomponents.ts.mdx
2021-02-02 00:50:49 +00:00

26 lines
563 B
Plaintext

```ts
// List.stories.ts
import { Meta, moduleMetadata, Story } from '@storybook/angular';
import { ListItemComponent } from './list-item.component';
import { ListComponent } from './list.component';
export default {
title: 'List',
component: ListComponent,
subcomponents: { ListItemComponent },
} as Meta;
const Template: Story<ListComponent> = (args) => ({
props: args,
moduleMetadata: {
declarations: [ListComponent, ListItemComponent],
},
});
export const OneItem = Template.bind({});
OneItem.args = {
items: [ListItemComponent],
};
```