storybook/docs/snippets/common/button-story-primary-long-name.js.mdx
2020-08-14 21:46:15 +01: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',
}
```