mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:11:08 +08:00
18 lines
387 B
Plaintext
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;
|
|
```
|