storybook/docs/snippets/react/list-story-unchecked.js.mdx
2020-10-07 12:23:34 +08:00

15 lines
298 B
Plaintext

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