storybook/docs/snippets/web-components/button-story-click-handler.js.mdx
2023-01-05 14:53:03 +00:00

17 lines
310 B
Plaintext

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