Update react/button-story-rename-story.ts.mdx

TypeScripts needs the Story type to know about the existence of the storyName property
This commit is contained in:
Appsum Solutions 2021-05-07 13:54:14 +02:00 committed by GitHub
parent 11d1c1410b
commit 1c4107f3e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,9 +3,11 @@
import React from 'react';
import { Story } from '@storybook/react';
import { Button, ButtonProps } from './Button';
export const Primary: React.VFC<{}> = () => <Button primary>Button</Button>;
export const Primary: Story = () => <Button primary>Button</Button>;
Primary.storyName = 'I am the primary';
```
```