| > and if you're doing crud stuff, most of the work is frankly done for you. React sucks for large complex forms unless you pair it with another technology or two. Want to write a crud app fast? C# and Winforms. Couple years back, I once did a prototype of a web app in C# and Winforms connected to Firebase. Less than a day, done. Month later, had it working in React. Granted the React website looked nice, but the difference in efficiency is huge. Data binding 20 fields on C# is a matter of minutes. Data binding 20 fields in React, and with Redux, ugh. I really should have just learned Redux Forms. And for any given forms library in React, you then get to practice learning how to beat it into shape and style it how you want. I, no kidding, think writing CRUD apps was easier with VB6 and Microsoft Access. |
Yeah working with redux sucks in general imo, I try to avoid it when I can. If I can get away with it, I try to avoid the problem entirely by using hasura as a backend. But sometimes that's not viable.