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