mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
29 lines
434 B
Plaintext
29 lines
434 B
Plaintext
```js
|
|
// List.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import List from './List';
|
|
import ListItem from './ListItem';
|
|
|
|
export default {
|
|
component: List,
|
|
title: 'List',
|
|
};
|
|
|
|
export const Empty = (args) => <List {...args} />;
|
|
|
|
export const OneItem = (args) => (
|
|
<List {...args}>
|
|
<ListItem />
|
|
</List>
|
|
);
|
|
|
|
export const ManyItems = (args) => (
|
|
<List {...args}>
|
|
<ListItem />
|
|
<ListItem />
|
|
<ListItem />
|
|
</List>
|
|
);
|
|
``` |