mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 03:21:49 +08:00
16 lines
282 B
Plaintext
16 lines
282 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import { html } from 'lit';
|
|
|
|
export default {
|
|
title: 'img',
|
|
component: 'my-component',
|
|
};
|
|
|
|
// Assume image.png is located in the "public" directory.
|
|
export const WithAnImage = {
|
|
render: () => html`<img src="/image.png" alt="image" />`,
|
|
};
|
|
```
|