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