mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +08:00
15 lines
324 B
Plaintext
15 lines
324 B
Plaintext
```ts
|
|
// List.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { List, ListProps } from './List';
|
|
import { Unchecked } from './ListItem.stories';
|
|
|
|
const Template: Story<ListProps> = (args) => <List {...args} />;
|
|
|
|
export const OneItem = Template.bind({});
|
|
OneItem.args = {
|
|
children: <Unchecked {...Unchecked.args} />,
|
|
};
|
|
``` |