redux form file innput code example
Example: redux-form field type file
const file_upload= ({ input, type, meta: { touched, error, warning } }) => {
delete input.value
return (
<div>
<label htmlFor={input.name}>
<input {...input} type={type}/>
</label>
</div>
)
}