mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
21 lines
378 B
Plaintext
21 lines
378 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import { Meta } from '@storybook/angular/types-6-0';
|
|
|
|
import Button from './button.component';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
//👇 Creates specific argTypes
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
args: {
|
|
//👇 Now all Button stories will be primary.
|
|
primary: true,
|
|
},
|
|
} as Meta;
|
|
```
|