import type { ComponentChildren } from 'preact'; import { APP_VERSION } from '@shared/app-version'; interface StandalonePageFrameProps { title: string; children: ComponentChildren; } export default function StandalonePageFrame(props: StandalonePageFrameProps) { return (
); }