storybook/docs/snippets/angular/button-story-component-args-primary.ts.mdx
2021-08-05 18:51:23 +01:00

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;
```