storybook/docs/snippets/common/button-story-primary-long-name.js.mdx
2020-10-07 12:23:34 +08:00

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',
}
```