mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
17 lines
431 B
Plaintext
17 lines
431 B
Plaintext
```ts
|
|
// ButtonGroup.stories.ts|tsx
|
|
|
|
import type { Meta } from '@storybook/react';
|
|
|
|
import { Button, ButtonGroup } from './ButtonGroup';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'ButtonGroup',
|
|
component: ButtonGroup,
|
|
subcomponents: { Button },
|
|
} as Meta;
|
|
``` |