File Jenis Bidang Redux-Form

const file_upload= ({ input, type, meta: { touched, error, warning } }) => {
  delete input.value

  return (
    <div>
      <label htmlFor={input.name}>
        <input {...input} type={type}/>
      </label>
    </div>
  )
}