mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
22 lines
251 B
Plaintext
22 lines
251 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export default {
|
|
component: 'demo-button',
|
|
};
|
|
|
|
export const Primary = {
|
|
args: {
|
|
primary: true,
|
|
label: 'Button',
|
|
},
|
|
};
|
|
|
|
export const Secondary = {
|
|
args: {
|
|
...Primary.args,
|
|
primary: false,
|
|
},
|
|
};
|
|
```
|