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