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

29 lines
434 B
Plaintext

```js
// List.stories.js
import React from 'react';
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>
);
```