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