mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
22 lines
413 B
Plaintext
22 lines
413 B
Plaintext
```js
|
|
// demo-button.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './demo-button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
//👇 Creates specific argTypes
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
args: {
|
|
//👇 Now all Button stories will be primary.
|
|
primary: true,
|
|
},
|
|
};
|
|
|
|
export const Primary = ({ primary }) => html`<demo-button ?primary=${primary}></demo-button>`;
|
|
```
|