mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:21:07 +08:00
14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
```ts
|
|
// ButtonGroup.stories.ts
|
|
|
|
import { Meta } from '@storybook/react/types-6-0';
|
|
|
|
import { Button, ButtonGroup } from '../ButtonGroup';
|
|
|
|
export default {
|
|
title: 'Path/to/ButtonGroup',
|
|
component: ButtonGroup,
|
|
subcomponents: { Button },
|
|
} as Meta;
|
|
```
|