storybook/docs/snippets/react/list-story-expanded.js.mdx
2020-08-07 17:05:17 +01:00

26 lines
403 B
Plaintext

```js
// List.stories.js
import List from './List'
import ListItem from './ListItem'
export default {
component: List,
title: 'List',
};
export const Empty = (args) => <List {...args} />;
export const OneItem = (args) => (
<List {...args}>
<ListItem />
</List>
);
export const ManyItems = (args) => (
<List {...args}>
<ListItem />
<ListItem />
<ListItem />
</List>
);
```