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