import { TextField } from '@material-ui/core'; import { TextFieldProps } from '@material-ui/core/TextField'; import * as React from 'react'; import { FieldRenderProps } from 'react-final-form'; const Input: React.FC & TextFieldProps> = ({ input: { name, onChange, value, ...restInput }, meta, placeholder, ...rest }) => ( ); export default Input;