mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
22 lines
385 B
Plaintext
22 lines
385 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { html } from 'lit';
|
|
|
|
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
|
|
const meta: Meta = {
|
|
title: 'Path/To/MyComponent',
|
|
component: 'my-component',
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj;
|
|
|
|
export const Basic: Story = {};
|
|
|
|
export const WithProp: Story = {
|
|
render: () => html`<my-component prop="value" />`,
|
|
};
|
|
```
|