import type { Node } from "antihtml"; interface BaseProps { title: string; children: Node | Node[], } export function BasePage(props: BaseProps) { return {props.title}
{props.children} }