import type {RenderableProps} from 'preact'; import {Suspense} from 'preact/compat'; import styles from './Frame.module.css'; export function Frame({children}: RenderableProps<{}>) { return (
{children}
); }