I have got an existing ASP.NET Core MVC website and am looking at putting a React app onto one of the server-side views (e.g. under Views/gallery.cshtml). No complex routes involved here as it's purely a single view for the React app. By the way, the React app is created via create-react-app (CRA).
Whenever I go to a particular route, say /gallery, I am seeing the React app, otherwise, it'd be just rendered from MVC server-side views as per normal.
I am not keen to make the whole MVC website a SPA app, and interested to know if there's any other potential solutions to achieve this.