storybook/docs/snippets/react/list-story-expanded.js.mdx
2021-09-03 23:31:04 +01:00

35 lines
510 B
Plaintext

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