mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import * as ListItemStories from './ListItem.stories';
|
|
|
|
export const ManyItems = Template.bind({});
|
|
ManyItems.args = {
|
|
items:[
|
|
...ListItemStories.Selected.args,
|
|
...ListItemStories.Unselected.args,
|
|
...ListItemStoriesUnselected.args
|
|
]
|
|
};
|
|
``` |