import { LitElement, html } from "lit"; import { customElement } from "lit/decorators.js"; import { styles } from "./index.css.js"; @customElement("app-home") export class AppHome extends LitElement { static override styles = styles; override render() { return html`

My app

Hello world

Episode `; } }