import { Col, FormGroup, Input, Label, } from 'components/Bootstrap'; export const FormBlock = ({ children, label, type = 'text', ...props }) => { const formElement = (children !== undefined) ? children : ; return ( {formElement} ); };