mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
13 lines
258 B
Plaintext
13 lines
258 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;
|
|
``` |