redux form field type file

Solutions on MaxInterview for redux form field type file by the best coders in the world

showing results for - "redux form field type file"
Sean
22 May 2016
1const file_upload= ({ input, type, meta: { touched, error, warning } }) => {
2  delete input.value
3
4  return (
5    <div>
6      <label htmlFor={input.name}>
7        <input {...input} type={type}/>
8      </label>
9    </div>
10  )
11}
12