import { route } from "@/core/route.js"; import { html } from "lit"; export const path = "/episodes" as const; export const routes = route( { path: "/episodes/:id", async enter() { await import("./index.js"); return true; }, render({ id }){ return html``; }, }, );