import { html, css, LitElement } from "lit"; import { customElement } from "lit/decorators.js"; @customElement("unknown-route") export class UnknownRoute extends LitElement { static styles = css``; render() { return html`
404
`; } }