pleshevski.ru/src/views/about.mts

7 lines
207 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 AboutPage(): AnyNode {
return PageLayout(new Elem("p").withText("Привет мир"));
2022-03-16 22:17:07 +03:00
}