```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`image`, }; ```