mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
25 lines
520 B
Plaintext
25 lines
520 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import List from './List';
|
|
import ListItem from './ListItem';
|
|
|
|
//👇 Imports a specific story from ListItem stories
|
|
import { Unchecked } from './ListItem.stories';
|
|
|
|
const ListTemplate = ({ items, ...args }) => (
|
|
<List>
|
|
{items.map((item) => (
|
|
<ListItem {...item} />
|
|
))}
|
|
</List>
|
|
);
|
|
|
|
export const Empty = ListTemplate.bind({});
|
|
Empty.args = { items: [] };
|
|
|
|
export const OneItem = ListTemplate.bind({});
|
|
OneItem.args = { items: [Unchecked.args] };
|
|
``` |