mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
28 lines
614 B
Plaintext
28 lines
614 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import { Story } from '@storybook/angular/types-6-0';
|
|
|
|
import ListComponent from './List.component';
|
|
import ListItemComponent from './ListItem.component';
|
|
|
|
//👇 Imports a specific story from ListItem stories
|
|
import { Unchecked } from './ListItem.stories';
|
|
|
|
export const OneItem: Story<ListComponent> = (args) => ({
|
|
moduleMetadata: {
|
|
declarations: [ListComponent, ListItemComponent],
|
|
},
|
|
props: args,
|
|
template: `
|
|
<list-component>
|
|
<listitem-component [item]="item"></listitem-component>
|
|
</list-component>
|
|
`,
|
|
});
|
|
|
|
OneItem.args = {
|
|
...Unchecked.args,
|
|
};
|
|
```
|