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

16 lines
299 B
Plaintext

```js
// List.stories.js
import React from 'react';
import List from './List';
//👇 Instead of importing ListItem, we import the stories
import { Unchecked } from './ListItem.stories';
export const OneItem = (args) => (
<List {...args}>
<Unchecked {...Unchecked.args} />
</List>
);
```