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