mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
36 lines
680 B
Plaintext
36 lines
680 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) => ({
|
|
props: args,
|
|
});
|
|
|
|
export const OneItem = Template.bind({});
|
|
OneItem.args = {
|
|
items: [ListItem],
|
|
};
|
|
|
|
export const ManyItems = Template.bind({});
|
|
ManyItems.args = {
|
|
items: [ListItem, ListItem, ListItem],
|
|
};
|
|
```
|