mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:41:05 +08:00
24 lines
440 B
Plaintext
24 lines
440 B
Plaintext
```js
|
|
// ButtonGroup.stories.js
|
|
|
|
import ButtonGroup from '../ButtonGroup.svelte';
|
|
import * as ButtonStories from './Button.stories';
|
|
|
|
export default {
|
|
title: 'ButtonGroup',
|
|
component: ButtonGroup,
|
|
}
|
|
|
|
const Template = (args) => ({
|
|
props: args,
|
|
});
|
|
|
|
export const Pair = Template.bind({});
|
|
Pair.args = {
|
|
buttons: [
|
|
{ ...ButtonStories.Primary.args },
|
|
{ ...ButtonStories.Secondary.args }
|
|
],
|
|
orientation: 'horizontal',
|
|
};
|
|
``` |