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

22 lines
397 B
Plaintext

```js
// List.stories.js
import React from 'react';
import List from './List';
import ListItem from './ListItem';
export default {
component: List,
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
title: 'List',
};
export const Empty = (args) => <List {...args} />;
export const OneItem = (args) => (
<List {...args}>
<ListItem />
</List>
);
```