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