mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 12:51:05 +08:00
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:
parent
11d1c1410b
commit
1c4107f3e6
@ -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';
|
||||
```
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user