mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
21 lines
316 B
Plaintext
21 lines
316 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
|
|
const meta: Meta = {
|
|
title: 'Button',
|
|
component: 'custom-button',
|
|
argTypes: {
|
|
onClick: { action: 'onClick' },
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj;
|
|
|
|
export const Text: Story = {
|
|
args: {},
|
|
};
|
|
```
|