mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
51 lines
874 B
Plaintext
51 lines
874 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 {
|
|
component: List,
|
|
decorators: [
|
|
moduleMetadata({
|
|
declarations: [List, ListItem],
|
|
imports: [CommonModule],
|
|
}),
|
|
],
|
|
};
|
|
|
|
export const Empty = {
|
|
render: (args) => ({
|
|
props: args,
|
|
template: '<list></list>',
|
|
}),
|
|
};
|
|
|
|
export const OneItem = {
|
|
render: (args) => ({
|
|
props: args,
|
|
template: `
|
|
<list>
|
|
<list-item></app-list-item>
|
|
</app-list>`,
|
|
}),
|
|
};
|
|
|
|
export const ManyItems = {
|
|
render: (args) => ({
|
|
props: args,
|
|
template: `
|
|
<list>
|
|
<list-item></list-item>
|
|
<list-item></list-item>
|
|
<list-item></list-item>
|
|
</app-list>
|
|
`,
|
|
}),
|
|
};
|
|
```
|