storybook/docs/snippets/common/button-story-primary-long-name.js.mdx
2021-01-28 00:11:22 +00:00

10 lines
192 B
Plaintext

```js
// Button.stories.js | Button.stories.ts
export const PrimaryLongName = Template.bind({});
PrimaryLongName.args = {
...Primary.args,
label: 'Primary with a really long name',
}
```