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

22 lines
387 B
Plaintext

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