6 lines
211 B
TypeScript
6 lines
211 B
TypeScript
import { PageLayout } from "../components/page_layout.mjs";
|
|
import { AnyAsyncNode, Elem } from "ren";
|
|
|
|
export async function WorksPage(): AnyAsyncNode {
|
|
return PageLayout([new Elem("p").withText("Works")]);
|
|
}
|