7 lines
238 B
TypeScript
7 lines
238 B
TypeScript
|
import { PageLayout } from "../components/page_layout.mjs";
|
||
|
import { AnyAsyncNode, Elem } from "../ren/nodes.mjs";
|
||
|
|
||
|
export async function AboutPage(): AnyAsyncNode {
|
||
|
return PageLayout([new Elem("p").withText("Привет мир")]);
|
||
|
}
|