mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
24 lines
558 B
Plaintext
24 lines
558 B
Plaintext
```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: ListComponent) => ({
|
|
props: args,
|
|
moduleMetadata: {
|
|
declarations: [ListComponent, ListItemComponent],
|
|
},
|
|
});
|
|
|
|
export const OneItem = Template.bind({});
|
|
OneItem.args = {
|
|
items: [ListItemComponent],
|
|
};
|
|
```
|