storybook/docs/snippets/angular/button-story-component-args-primary.ts.mdx
2020-08-22 16:55:57 -04:00

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,
},
}
```