React Redux Form
In this tutorial, you will install react-redux-form and then convert the controlled form that we created earlier into a form supported by react-redux-form. At the end of this tutorial, you will be able to:
- Install and configure react-redux-form
- Implement a controlled form using react-redux-form
Installing and Using react-redux-form
- We first install the react-redux-form into our project as follows:
$ npm install redux react-redux react-redux-form --save
- Then open ContactComponent.js and update the Feedback Form to use react-redux-form:
(source: Front-End Web Development with React on Coursera)