storybook/docs/snippets/react/list-story-unchecked.ts.mdx
2020-08-14 21:46:15 +01:00

13 lines
311 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>
);
```