mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:21:07 +08:00
10 lines
172 B
Plaintext
10 lines
172 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export const PrimaryLongName = Template.bind({});
|
|
|
|
PrimaryLongName.args = {
|
|
...Primary.args,
|
|
label: 'Primary with a really long name',
|
|
}
|
|
``` |