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

9 lines
165 B
Plaintext

```js
// Button.stories.ts
import { Button } from './Button';
export const Primary=()=><Button primary label="Button"/>;
Primary.storyName='I am the primary';
```