pleshevski.ru/src/views/e404.mts

7 lines
197 B
TypeScript
Raw Normal View History

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