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