mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
15 lines
285 B
Plaintext
15 lines
285 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,
|
|
],
|
|
};
|
|
```
|