storybook/docs/snippets/react/list-story-with-subcomponents.js.mdx
2020-08-10 19:23:38 +01:00

20 lines
314 B
Plaintext

```js
// List.stories.js
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>
);
```