import React from 'react'; import { FormGroup, FormControl, HelpBlock, ControlLabel, InputGroup } from 'react-bootstrap'; const FieldGroup = ({ id, label, button, error, ...props }) => ( {label} {button ? {button} : } {error && {error}} ) export default FieldGroup;