import React from 'react'; import cn from 'classnames'; import { ErrorMessage, FieldInputProps, Field as FormikField, ErrorMessageProps, } from 'formik'; import { FormFeedback, FormGroup, InputProps, LabelProps } from 'reactstrap'; import Input from './Input'; import Label from '../Label'; type SimpleFieldProps = Partial> & InputProps & { errorMessageProps?: ErrorMessageProps; labelProps: LabelProps; labelText: string; }; const SimpleField: React.FC = ({ errorMessageProps, labelProps, labelText, ...props }) => ( ); export default SimpleField;