storybook/docs/snippets/angular/button-story-component-args-primary.ts.mdx

18 lines
277 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,
},
};
```