15 lines
367 B
TypeScript
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}
|
|
`;
|
|
}
|
|
}
|