mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
19 lines
294 B
Plaintext
19 lines
294 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import React from 'react';
|
|
import Button from './Button';
|
|
|
|
export default {
|
|
title: "Button",
|
|
component: Button,
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
args: {
|
|
// Now all Button stories will be primary.
|
|
primary: true,
|
|
},
|
|
};
|
|
|
|
``` |