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