Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Created September 3, 2018 14:28
Show Gist options
  • Save agoiabel/6410a5151add3c8558154a9e49333b07 to your computer and use it in GitHub Desktop.
Save agoiabel/6410a5151add3c8558154a9e49333b07 to your computer and use it in GitHub Desktop.
import React from 'react';
const TextArea = props => {
let formControl = "form-control";
if (props.touched && !props.valid) {
formControl = 'form-control control-error';
}
return (
<div className="form-group">
<textarea {...props} className={formControl} />
</div>
);
}
export default TextArea;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment