storybook/docs/snippets/html/button-story-default-exports.ts.mdx
2022-11-17 16:33:22 +01:00

18 lines
387 B
Plaintext

```ts
// Button.stories.ts
import type { Meta } from '@storybook/html';
import { createButton, ButtonArgs } from './Button';
const meta: Meta<ButtonArgs> = {
/* 👇 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 default meta;
```