storybook/docs/snippets/react/list-story-reuse-data.js.mdx
2021-02-23 00:26:03 +00:00

16 lines
361 B
Plaintext

```js
// List.stories.js
import React from 'react';
//👇 We're importing the necessary stories from ListItem
import { Selected, Unselected } from './ListItem.stories';
export const ManyItems = (args) => (
<List {...args}>
<Selected {...Selected.args} />
<Unselected {...Unselected.args} />
<Unselected {...Unselected.args} />
</List>
);
```