storybook/docs/snippets/react/list-story-with-subcomponents.js.mdx
2020-08-14 21:46:15 +01:00

21 lines
341 B
Plaintext

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