import { h } from "../index" export interface UILayoutOptions { children: unknown } export function UILayout(this: UILayoutOptions) { return ( {this.children} ) }