import React, { SFC } from 'react'; import { Label } from '..'; interface Props { label: string; inputProps: {}; labelWidth?: number; inputWidth?: number; } const defaultProps = { labelWidth: 6, inputProps: {}, inputWidth: 12, }; const FormGroup: SFC = ({ label, labelWidth, inputProps, inputWidth }) => { return (
); }; FormGroup.defaultProps = defaultProps; export { FormGroup };