mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
22 lines
411 B
Plaintext
22 lines
411 B
Plaintext
```ts
|
|
// Button.stories.ts | Button.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Story, Meta } from '@storybook/react';
|
|
|
|
import Button from './Button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
//👇 Creates specific argTypes
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
args: {
|
|
//👇 Now all Button stories will be primary.
|
|
primary: true,
|
|
},
|
|
} as Meta;
|
|
``` |