mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
28 lines
530 B
Plaintext
28 lines
530 B
Plaintext
|
|
```js
|
|
// List.stories.js
|
|
|
|
import { createList } from './List';
|
|
import { createListItem } from './ListItem';
|
|
|
|
export default {
|
|
title: 'List',
|
|
};
|
|
|
|
export const Empty = (args) => createList(args);
|
|
|
|
export const OneItem = (args) => {
|
|
const list = createList(args);
|
|
list.appendChild(createListItem());
|
|
return list;
|
|
};
|
|
|
|
export const ManyItems = (args) => {
|
|
const list = createList(args);
|
|
list.appendChild(createListItem());
|
|
list.appendChild(createListItem());
|
|
list.appendChild(createListItem());
|
|
return list;
|
|
};
|
|
```
|