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