storybook/docs/snippets/angular/button-story-component-args-primary.ts.mdx
2020-08-07 17:05:17 +01:00

19 lines
278 B
Plaintext

```ts
// Button.story.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,
},
}
```