import React from 'react'; interface ProrankTextareaProps extends Omit, 'onChange'> { value?: string; onChange?: (value: string) => void; label?: string; help?: string; className?: string; } const ProrankTextarea: React.FC = ({ value = '', onChange, label, help, className = '', ...props }) => { const handleChange = (event: React.ChangeEvent) => { if (onChange) { onChange(event.target.value); } }; return (
{label && } {help &&

{help}

}