mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 01:01:07 +08:00
19 lines
330 B
Plaintext
19 lines
330 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import Button from './button.component';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
parameters: {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'red', value: '#f00', },
|
|
{ name: 'green', value: '#0f0', },
|
|
{ name: 'blue', value: '#00f', },
|
|
]
|
|
}
|
|
}
|
|
}
|
|
``` |