mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
16 lines
299 B
Plaintext
16 lines
299 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import List 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>
|
|
);
|
|
``` |