storybook/docs/snippets/web-components/button-story-click-handler.ts.mdx
2023-02-16 09:13:06 +08:00

22 lines
427 B
Plaintext

```ts
// Button.stories.ts
import { html } from 'lit';
import type { Meta, StoryObj } from '@storybook/web-components';
import { action } from '@storybook/addon-actions';
const meta: Meta = {
title: 'Button',
component: 'custom-button',
};
export default meta;
type Story = StoryObj;
export const Text: Story = {
render: () => html`<custom-button label="Hello" @click=${action('clicked')}></custom-button>`,
};
```