For various reasons that are not my call, in my work application, we are using redux without the connect HOC. There are pros and cons here. But is it possible to use redux-form in this manner, currently I have redux-form1 using it's own store viaconnect()`, which means it's less than ideal, there is at times state being passed between the two stores, the single source of truth is lost.
Is there any way I can use redux-form without using the connect HOC?
Redux forms uses
reduxForminstead of connect, Here is an example.And if you did want to, you could use
connecton the parent container of that form, and it would work.