import { splitProps, type JSX } from "solid-js"; import { cn } from "../../lib/cn"; export type PageProps = JSX.HTMLAttributes; /** Standard constrained content area rendered inside a Page iframe. */ export function Page(props: PageProps) { const [local, rest] = splitProps(props, ["class", "children"]); return (
{local.children}
); }