mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:11:08 +08:00
22 lines
381 B
Plaintext
22 lines
381 B
Plaintext
```js
|
|
// demo-button.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './demo-button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
//👇 Creates specific parameters for the story
|
|
parameters: {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'red', value: '#f00' },
|
|
{ name: 'green', value: '#0f0' },
|
|
{ name: 'blue', value: '#00f' },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
```
|