What would that look like in practice. Would you write 95% of the basic crud stuff as server side rendered then just have the React or Vue component for the really complex UI stuff?
Would there be downsides having the mix of languages (assuming your backend language is not JavaScript) ?
most of the page is server rendered. The hairy bits (eg. complex forms, super interactive components) are react and they maintain their own state. There might be downsides but they're probably not worse than writing a bunch of jQuery.
Would there be downsides having the mix of languages (assuming your backend language is not JavaScript) ?