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

13 lines
284 B
Plaintext

```js
// List.stories.js
import { List, ListProps} 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>
);
```