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

21 lines
416 B
Plaintext

```md
<!-- Button.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { Button } from './button.component';
<!-- 👇 Creates specific argTypes for args and turns every Button story into primary -->
<Meta
title="Button"
component={Button}
argTypes={{
backgroundColor: { control: 'color' },
}},
args={{
primary: true,
}} />
<!-- Remainder story implementation -->
```