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