mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
18 lines
276 B
Plaintext
18 lines
276 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import Button from './button.component';
|
|
|
|
export default {
|
|
title: "Button",
|
|
component: Button,
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
args: {
|
|
// Now all Button stories will be primary.
|
|
primary: true,
|
|
},
|
|
}
|
|
|
|
``` |