How to use multiple router-outlet in angular2?
I have a main router-outlet , which is used to display a login screen ( /login ) and the main content screen(which is shown after login) ( /main ). Once the user is on content screen, I want to show a nav-bar on top, with 2 options(say, 'Overview', 'Insights'). This nav-bar is common for OverviewComponent and InsightsComponent Below this nav-bar, I want to show another router-outlet, which would load OverviewComponent or InsightsComponent , based on what user clicks in nav-bar. If I give '/overview' and /'insights' as the route, it would directly show me the respective component, but not the