mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
22 lines
387 B
Plaintext
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'),
|
|
},
|
|
};
|
|
```
|