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

14 lines
312 B
Plaintext

```ts
// List.stories.tsx
import React from 'react';
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>
);
```