storybook/docs/snippets/angular/button-story-component-args-primary.ts.mdx
2021-08-28 01:52:57 +01:00

18 lines
297 B
Plaintext

```ts
// Button.stories.ts
import Button from './button.component';
export default {
component: Button,
//👇 Creates specific argTypes
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
//👇 Now all Button stories will be primary.
primary: true,
},
};
```