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