🐛 fixes routing

This commit is contained in:
2026-05-20 14:40:47 +02:00
parent 7d6240e28a
commit e4e41197b9
7 changed files with 78 additions and 22 deletions
+14
View File
@@ -0,0 +1,14 @@
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}
`;
}
}