import { RefObject, TextareaHTMLAttributes } from "preact/compat"; interface FormTextAreaProps extends Omit { id?: string; currentValue: string; onChange?(newValue: string): void; onBlur?(newValue: string): void; inputRef?: RefObject } export default function FormTextArea({ inputRef, id, onBlur, onChange, currentValue, className, ...restProps }: FormTextAreaProps) { return ( ) }