import { VNode } from "preact"; export function Content(props: { children?: VNode | VNode[] }) { return (
{props.children}
); }