storybook/docs/snippets/react/button-story-rename-story.ts.mdx
2021-03-16 23:11:26 +03:00

11 lines
227 B
Plaintext

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