final-form-material-ui
Version:
A set of wrapper components to facilitate using Material UI with Final Form
10 lines (9 loc) • 399 B
TypeScript
import * as React from 'react';
import { FormControlProps } from '@material-ui/core/FormControl';
import { FieldRenderProps } from 'react-final-form';
interface FormHelperTextWrapperProps extends FieldRenderProps {
label: string;
formControlProps: FormControlProps;
}
declare const FormHelperTextWrapper: React.SFC<FormHelperTextWrapperProps>;
export default FormHelperTextWrapper;