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