interface FormTextAreaProps { id?: string; currentValue: string; onBlur?(newValue: string): void; rows: number; } export default function FormTextArea({ id, onBlur, rows, currentValue }: FormTextAreaProps) { return ( ) }