storybook/docs/snippets/react/button-story-rename-story.ts.mdx
2020-08-07 17:05:17 +01:00

9 lines
196 B
Plaintext

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