storybook/docs/snippets/react/button-story-rename-story.ts.mdx
Appsum Solutions 1c4107f3e6
Update react/button-story-rename-story.ts.mdx
TypeScripts needs the Story type to know about the existence of the storyName property
2021-05-07 13:54:14 +02:00

14 lines
263 B
Plaintext

```ts
// Button.stories.tsx
import React from 'react';
import { Story } from '@storybook/react';
import { Button, ButtonProps } from './Button';
export const Primary: Story = () => <Button primary>Button</Button>;
Primary.storyName = 'I am the primary';
```