mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
22 lines
464 B
Plaintext
22 lines
464 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
import React from 'react';
|
|
import List from './List';
|
|
import ListItem from './ListItem';
|
|
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] };
|
|
``` |