mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
22 lines
463 B
Plaintext
22 lines
463 B
Plaintext
```ts
|
|
// List.stories.tsx
|
|
|
|
import React from 'react';
|
|
import { Story, Meta } from '@storybook/react/types-6-0';
|
|
import { List, ListProps } from './List';
|
|
import { ListItem, ListItemProps } from './ListItem';
|
|
|
|
export default {
|
|
component: List,
|
|
subcomponents: [ListItem],
|
|
title: 'List',
|
|
} as Meta;
|
|
|
|
export const Empty = Story<ListProps> = (args) => <List {...args} />;;
|
|
|
|
export const OneItem = (args) => (
|
|
<List {...args}>
|
|
<ListItem />
|
|
</List>
|
|
);
|
|
``` |