There is an admin site written in plain HTML / CSS / JS (jQuery) - i.e. this is not a SPA, server-side rendering in plain HTML and then connecting JS (jQuery) to the DOM on the client side, as in the good old days.
Many admin pages suit me in this design (namely, in development speed, where highly interactive interfaces are not required), but here is a page where you need to do something with highly interactive interfaces, for example, a table with a group tree, filtering, sorting and other things and I would like to implement this table on React components.
That's actually the question, “will it be / is it convenient / will this practice be practiced” to implement only this page on React components (with Flux or Redux, Routing, maybe with something else, I’m just not good at React) considering the fact that the entire admin is not a SPA? Those. As far as I understand, only for this page will I need to implement the REST API on the server side and interact with it on the client side React components, or it may be something else, and maybe this is not practiced at all and this is a bad decision?