redux form field input prop

Solutions on MaxInterview for redux form field input prop by the best coders in the world

showing results for - "redux form field input prop"
Elias
06 Oct 2017
1export default ({ input: { onChange, value }}) => (
2  <input
3    type="text"
4    placeholder="Write something..."
5    className="uk-input"
6    onChange={onChange}
7    value={value}
8  />
9);