storybook/docs/snippets/web-components/component-story-with-custom-render-function.ts.mdx
2023-02-16 09:13:06 +08:00

30 lines
539 B
Plaintext

```ts
// MyComponent.stories.ts
import { html } from 'lit';
import type { Meta, StoryObj } from '@storybook/web-components';
const meta: Meta = {
title: 'MyComponent',
component: 'my-component',
};
export default meta;
type Story = StoryObj;
// This story uses a render function to fully control how the component renders.
export const Example: Story = {
render: () => html`
<layout>
<header>
<h1>Example</h1>
</header>
<article>
<my-component />
</article>
</layout>
`,
};
```