Files
commafeed-podcasts/src/app-episodes/:id/index.ts
T
2026-05-20 14:40:47 +02:00

15 lines
367 B
TypeScript

import { LitElement, html } from "lit";
import { property, customElement } from "lit/decorators.js";
import { styles } from "./index.css.js";
@customElement("app-episode")
export class AppEpisode extends LitElement {
static override styles = styles;
@property({ type: String }) override id = "";
override render() {
return html`
Episode ${this.id}
`;
}
}