Is it possible to load 2 different root components (not side by side on the page). The plunker example found , the only difference is that both root components are loaded on the same page.
<body> <my-app>Loading...</my-app> <my-sec>Loading...</my-sec> </body>
What I want to achieve is that each of the components has its own layout and is not shared with app.component.
Example: app.component will have a presentation template for regular users, where admin.component will have a panel template.
Is this achievable? or I need to create for this 2 separate projects (one for normal viewing, another for representing the panel)
source share