import { h } from 'preact'; import styles from './Layout.module.css'; interface LayoutProps { children: any; className?: string; } export function Layout({ children, className = '' }: LayoutProps) { return (
Zum Hauptinhalt springen
{children}
); } interface ScreenProps { children: any; className?: string; } export function Screen({ children, className = '' }: ScreenProps) { return (
{children}
); }