storybook/docs/snippets/html/button-story-default-exports.ts.mdx
2022-07-07 22:27:00 +01:00

15 lines
365 B
Plaintext

```ts
// Button.stories.ts
import type { Meta } from '@storybook/html';
import { createButton, ButtonArgs } 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',
} as Meta<ButtonArgs>;
```