I am quite new in Angular 4. I am trying to use router outlet to create dynamic content unfortunately, I am not able to use it twice, because I have different scenarios for tablets, mobiles and desktops. Maybe do you guys have some advise?
I think I can assign different outlets but maybe there is an easier way?
My code:
<div class="ui two column stackable grid">
<app-navigation class="three wide column computer mobile only webso-navigation"></app-navigation>
<app-navigation class="four wide column tablet only webso-navigation"></app-navigation>
<div class="thirteen wide column computer mobile only webso-content">
<router-outlet></router-outlet>
</div>
<div class="twelve wide column tablet only webso-content">
<router-outlet></router-outlet>
</div>
</div>
Thank you for your help.