import { LitElement, html } from "lit"; import { msg, localized } from "@lit/localize"; @localized() export class NotFound extends LitElement { createRenderRoot() { return this; } render() { return html`
${msg("Page not found")}
`; } }