storybook/docs/snippets/react/list-story-expanded.js.mdx
2020-08-18 17:30:56 +01:00

28 lines
433 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>
);
```