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

15 lines
314 B
Plaintext

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