mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
30 lines
685 B
Plaintext
30 lines
685 B
Plaintext
```js
|
|
// ButtonGroup.stories.js|jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { ButtonGroup } from '../ButtonGroup';
|
|
|
|
//👇 Imports the Button stories
|
|
import * as ButtonStories from './Button.stories';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'ButtonGroup',
|
|
component: ButtonGroup,
|
|
};
|
|
|
|
const Template = (args) => <ButtonGroup {...args} />;
|
|
|
|
export const Pair = Template.bind({});
|
|
Pair.args = {
|
|
buttons: [
|
|
{ ...ButtonStories.Primary.args },
|
|
{ ...ButtonStories.Secondary.args }
|
|
],
|
|
orientation: 'horizontal',
|
|
};
|
|
``` |