storybook/docs/snippets/html/button-story-rename-story.js.mdx

17 lines
385 B
Plaintext

```js
// Button.stories.js
import { createButton } from './Button';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/html/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Button',
};
export const Primary = (args) => createButton(args);
Primary.storyName = 'I am the primary';
```