I have an existing web app that is built upon an mvc architecture. Can I add ng2 components to an html view rendered in mvc? Let's say my mvc app has a UserView, UserModel, UserController. How would I go about adding an ng2 component to UserView?
I have the angular.io tour of heroes final app running on my laptop. The main page is index.html and all ng2 app files exist in an "app" folder. Is it possible to create some type of partial view that I can render on my mvc UserView? If so then how would I go about doing this?