mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
- Newline following filename comment - Fix URLs in comments - Ensure consistent usage of `ts` vs `tsx` language
20 lines
374 B
Plaintext
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;
|
|
```
|