mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
27 lines
579 B
Plaintext
27 lines
579 B
Plaintext
```js
|
|
// demo-button-group.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './demo-button-group';
|
|
|
|
//👇 Imports the Button stories
|
|
import * as ButtonStories from './demo-button.stories';
|
|
|
|
export default {
|
|
title: 'ButtonGroup',
|
|
};
|
|
|
|
const Template = ({ buttons, orientation }) => {
|
|
return html`
|
|
<demo-button-group .buttons=${buttons} .orientation=${orientation}></demo-button-group>
|
|
`;
|
|
};
|
|
|
|
export const Pair = Template.bind({});
|
|
Pair.args = {
|
|
buttons: [{ ...ButtonStories.Primary.args }, { ...ButtonStories.Secondary.args }],
|
|
orientation: 'horizontal',
|
|
};
|
|
```
|