storybook/docs/snippets/web-components/button-story-click-handler-simplificated.ts.mdx
2023-01-16 20:19:05 +01:00

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: {},
};
```