storybook/docs/snippets/react/button-story-rename-story.ts.mdx
2020-08-14 21:46:15 +01:00

10 lines
224 B
Plaintext

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