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

24 lines
405 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,
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
};
export const Empty = {};
export const OneItem = {
render: (args) => (
<List {...args}>
<ListItem />
</List>
),
};
```