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