storybook/docs/snippets/html/button-story-default-exports.js.mdx

14 lines
288 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',
};
```