mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
38 lines
697 B
Plaintext
38 lines
697 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import { moduleMetadata } from '@storybook/angular';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import List from './list.component';
|
|
import ListItem from './list-item.component'
|
|
|
|
|
|
export default {
|
|
title: 'List',
|
|
component: List,
|
|
decorators: [
|
|
moduleMetadata({
|
|
declarations: [ListItem],
|
|
imports: [CommonModule],
|
|
}),
|
|
],
|
|
};
|
|
|
|
// Always an empty list, not super interesting
|
|
const Template = (args: List) => ({
|
|
component: List,
|
|
props: args,
|
|
});
|
|
|
|
export const OneItem = Template.bind({});
|
|
OneItem.args = {
|
|
items:[ListItem]
|
|
};
|
|
|
|
export const ManyItems = Template.bind({});
|
|
ManyItems.args = {
|
|
items:[ListItem,ListItem,ListItem]
|
|
};
|
|
|
|
``` |