mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
14 lines
312 B
Plaintext
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>
|
|
);
|
|
``` |