mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { List } from './list.component';
|
|
import { ListItem } from './list-item.component';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/angular/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'List',
|
|
component: List,
|
|
decorators: [
|
|
moduleMetadata({
|
|
declarations: [List, ListItem],
|
|
imports: [CommonModule],
|
|
}),
|
|
],
|
|
} as Meta;
|
|
|
|
// Always an empty list, not super interesting
|
|
export const Empty: Story = {
|
|
render: (args) => ({
|
|
props: args,
|
|
template: '<app-list></app-list>',
|
|
}),
|
|
};
|
|
|
|
export const OneItem: Story = {
|
|
render: (args) => ({
|
|
props: args,
|
|
template: `
|
|
<app-list>
|
|
<app-list-item></app-list-item>
|
|
</app-list>`,
|
|
}),
|
|
};
|
|
|
|
export const ManyItems: Story = {
|
|
render: (args) => ({
|
|
props: args,
|
|
template: `
|
|
<app-list>
|
|
<app-list-item></app-list-item>
|
|
<app-list-item></app-list-item>
|
|
<app-list-item></app-list-item>
|
|
</app-list>
|
|
`,
|
|
}),
|
|
};
|
|
``` |