storybook/docs/snippets/angular/button-story-component-args-primary.ts.mdx
2021-11-03 23:31:14 +00:00

24 lines
553 B
Plaintext

```ts
// Button.stories.ts
import { Meta } from '@storybook/angular';
import { Button } from './button.component';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/angular/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Button',
component: Button,
//👇 Creates specific argTypes
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
//👇 Now all Button stories will be primary.
primary: true,
},
} as Meta;
```