I’ve been told that if you use jquery in a web app that was built with react, you’re doing something wrong. I’m confused by that, because my understanding is that react’s functionality is primarily limited to UI design, while jQuery is more of a full fledged framework that closer mimics the full functionality of javascript.
Suppose you’re building a web app in react, but then you need to do some more complex js (i.e. some api requests, then perform so complex computations on the data). Wouldn’t it be ok to integrate jQuery to keep that code cleaner and more concise?