> React by nature isolates business logic into components
The essence is simply this:
function MyView(model) {
return template;
}
...which can work with any view layer and the same 100 engineers. Especially if the model is an API with business logic around some immutable stream/state. The concept is simple enough to be described in one sentance :)
> don't have to know how to "properly componentize" things
I think you're overstating how difficult this problem is or forgetting that React's API must still be learned from documentation and examples.