```js // MyComponent.stories.js import { html } from 'lit-html'; export default { title: 'img', component: 'my-component', }; /* *👇 Render functions are a framework specific feature to allow you control on how the component renders. * See https://storybook.js.org/docs/7.0/web-components/api/csf * to learn how to use render functions. */ export const WithAnImage = { render: () => html`My CDN placeholder`, }; ```