import React, { PropTypes } from 'react'; import { FormGroup, FormControl } from 'react-bootstrap'; import ControlLabelWithTooltip from './ControlLabelWithTooltip'; const propTypes = { label: PropTypes.string, description: PropTypes.string, }; const defaultProps = { label: null, description: null, }; export default function TextField({ label, description }) { return ( ); } TextField.propTypes = propTypes; TextField.defaultProps = defaultProps;