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