storybook/docs/snippets/react/button-story-rename-story.js.mdx
2020-08-14 00:54:43 +05:30

10 lines
166 B
Plaintext

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