mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
21 lines
561 B
Plaintext
21 lines
561 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
//👇 We're importing the necessary stories from ListItem
|
|
import { Selected, Unselected } from './ListItem.stories';
|
|
|
|
export const ManyItems: Story<List> = (args) => ({
|
|
props: args,
|
|
template: `
|
|
<app-list>
|
|
<app-listitem [itemProperty]="Selected"></app-listitem>
|
|
<app-listitem [itemProperty]="Unselected"></app-listitemm>
|
|
<app-listitem[itemProperty]="Unselected"></app-listitem>
|
|
</app-list>`,
|
|
});
|
|
ManyItems.args= {
|
|
Selected: Selected.args.itemProperty,
|
|
Unselected: Unselected.args.itemProperty,
|
|
};
|
|
```
|