import { ComponentChildren } from "preact"; interface SectionProps { title?: string; children: ComponentChildren; className?: string; } export default function Section({ className, title, children }: SectionProps) { return (
{title &&

{title}

} {children}
) }