storybook/docs/snippets/angular/list-story-expanded.ts.mdx
2020-08-09 19:04:00 +01:00

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]
};
```