storybook/docs/snippets/angular/button-story-component-args-primary.ts.mdx
2021-01-30 17:42:31 +00:00

20 lines
339 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,
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
// Now all Button stories will be primary.
primary: true,
},
} as Meta;
```