docs/api/README.md
reduxForm(config:Object)The decorator you use to connect your form component to Redux. See details.
reducerThe form reducer. Should be given to mounted to your Redux state at
form.
reducer.plugin(Object<String, Function>)
Returns a form reducer that will also pass each action through additional reducers specified.
propsThe props passed into your decorated form component.
FieldThe component needed to connect any input to
redux-form.
FieldsThe component that can connect multiple inputs to
redux-form.
FieldArrayThe component needed to render an array of fields
FormSectionThe component needed to prefix the names of a group of fields.
FormA simple wrapper for the React
<form>component that allows the surroundingredux-form-decorated component to trigger itsonSubmitfunction.
formValueSelector(form:String, [getFormState:Function])Creates a selector for use in
connect()ing to form values in the Redux store.
SubmissionErrorA special error type for returning submit validation errors
ReduxFormContextA react context that allows to manipulate a form in any way, can create form components
redux-formexports all of its internal action creators.
redux-formprovides Redux state selectors that may be used to query the state of your forms.