pleshevski.ru/src/views/e404.mts

7 lines
228 B
TypeScript
Raw Normal View History

2022-03-16 22:17:07 +03:00
import { PageLayout } from "../components/page_layout.mjs";
import { AnyAsyncNode, Elem } from "../ren/nodes.mjs";
export async function E404(): AnyAsyncNode {
return PageLayout([new Elem("p").withText("Page not found")]);
}