Redux Form multiple forms in single page

1.4k Views Asked by At

I have a lot of Fields on one page. They are related to different subjects and will be sent through different API. In some cases, I have fields with the same name(few instance of the same object - will sent through single API twice). The form can be just string type. How to implement multiple forms through Redux form https://redux-form.com/7.4.2/? Does anyone have the same issue?

export default reduxForm({
  form: 'simple' // a unique identifier for this form
})(SimpleForm)
0

There are 0 best solutions below