storybook/docs/snippets/web-components/button-story-component-args-primary.ts.mdx
Kyle Gach b97d94e005 Address feedback
- Newline following filename comment
- Fix URLs in comments
- Ensure consistent usage of `ts` vs `tsx` language
2023-01-12 14:17:39 -07:00

20 lines
374 B
Plaintext

```js
// Button.stories.js
import type { Meta, StoryObj } from '@storybook/web-components';
const meta: Meta = {
title: 'Button',
component: 'demo-button',
// 👇 Creates specific argTypes
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
// 👇 Now all Button stories will be primary.
primary: true,
},
};
export default meta;
```