mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:21:07 +08:00
15 lines
223 B
Plaintext
15 lines
223 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
const Primary = ButtonStory.bind({});
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Button',
|
|
}
|
|
|
|
const Secondary = ButtonStory.bind({});
|
|
Secondary.args = {
|
|
...Primary.args,
|
|
primary: false,
|
|
}
|
|
``` |