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

25 lines
520 B
Plaintext

```js
// List.stories.js
import React from 'react';
import List from './List';
import ListItem from './ListItem';
//👇 Imports a specific story from ListItem stories
import { Unchecked } from './ListItem.stories';
const ListTemplate = ({ items, ...args }) => (
<List>
{items.map((item) => (
<ListItem {...item} />
))}
</List>
);
export const Empty = ListTemplate.bind({});
Empty.args = { items: [] };
export const OneItem = ListTemplate.bind({});
OneItem.args = { items: [Unchecked.args] };
```