
- const form = reduxForm({ form: ‘ReduxFormTutorial’, validate });
- The form we’re making is connected to our application state, and will have an awareness of the actions we’ve created elsewhere in the project.
- The syntax of Redux-Form has been modified to streamline and simplify the process of creating and managing your forms.
- The tutorial is going to help you set up a Redux-Form that uses the latest syntax, and how to get that form set up with some simple validation and initial values.
- Handling the validation of our form can get messy if we do it “inline” as part of the render function of our component.

@ReactiveConf: “Create a Redux-form with validation and initialized values: #ReactJS” open tweet »