import React, { PropTypes } from 'react'; import { FormGroup, FormControl } from 'react-bootstrap'; import ControlLabelWithTooltip from './ControlLabelWithTooltip'; const propTypes = { name: PropTypes.string.isRequired, label: PropTypes.string, description: PropTypes.string, onChange: PropTypes.func, value: PropTypes.string, }; const defaultProps = { label: null, description: null, onChange: () => {}, value: '', }; export default class TextField extends React.Component { onChange(event) { this.props.onChange(this.props.name, event.target.value); } render() { return ( ); } } TextField.propTypes = propTypes; TextField.defaultProps = defaultProps;