import { ComponentChildren } from "preact"; interface FormGroupProps { label: string; title?: string; className?: string; children: ComponentChildren; description?: string; } export default function FormGroup({ label, title, className, children, description }: FormGroupProps) { return (