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