mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
31 lines
544 B
Plaintext
31 lines
544 B
Plaintext
```ts
|
|
// List.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Story, Meta } from '@storybook/react';
|
|
|
|
import { List, ListProps } from './List';
|
|
import { ListItem, ListItemProps } from './ListItem';
|
|
|
|
export default {
|
|
component: List,
|
|
title: 'List',
|
|
} as Meta;
|
|
|
|
export const Empty: Story<ListProps> = (args) => <List {...args} />;
|
|
|
|
export const OneItem = (args) => (
|
|
<List {...args}>
|
|
<ListItem />
|
|
</List>
|
|
);
|
|
|
|
export const ManyItems = (args) => (
|
|
<List {...args}>
|
|
<ListItem />
|
|
<ListItem />
|
|
<ListItem />
|
|
</List>
|
|
);
|
|
``` |