storybook/docs/snippets/web-components/my-component-story-basic-and-props.ts.mdx
2023-01-05 14:53:03 +00:00

22 lines
390 B
Plaintext

```ts
// MyComponent.stories.ts
import { html } from 'lit-html';
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" />`,
};
```