Updating onChange

This commit is contained in:
okbel
2018-02-21 10:45:54 -03:00
parent 7d7a5a8b59
commit 50748cc032
@@ -14,7 +14,7 @@ const TextAreaComponent = ({
value={value}
placeholder={placeholder}
id={id}
onChange={onChange}
onChange={e => onChange(e.target.value)}
rows={rows}
disabled={disabled}
/>