pleshevski.ru/src/views/about.mts

7 lines
225 B
TypeScript
Raw Normal View History

2022-03-16 22:17:07 +03:00
import { PageLayout } from "../components/page_layout.mjs";
2022-03-17 12:12:46 +03:00
import { AnyAsyncNode, Elem } from "ren";
2022-03-16 22:17:07 +03:00
export async function AboutPage(): AnyAsyncNode {
return PageLayout([new Elem("p").withText("Привет мир")]);
}