I was thinking about making a video tutorial on how to convert a React app to jQuery as a sort of satire piece but I was afraid the result might be good enough that it wouldn't come across as a joke in the end.
oh and btw, if anyone is adverse to both jQuery and React and just wants some simple reactivity in vanilla JS, this is very easily achieved these days by just using Proxy prototype. You could build your own minimal library for simple use cases: https://codepen.io/jaeming/pen/JjybgyN?editors=1011
React is a UI framework where the view is a direct representation of the application state. A (react) component is a function (or class) that returns a UI element based on the props (state) it receives.
With React; component + props = view, this makes it easy to reason about what your UI looks like because it is a result of how you manipulate your data.
With jQuery that is more like: view = html + a bunch of (spaghetti) code. This can make it harder to reason about because you need to implement the logic to update your view and event handlers yourself.