I am currently working on a project using Angular 6 and I am encountering some difficulties with routing. I have successfully created the entire 'Admin' section with the following structure:
<div class="wrapper">
<div class="sidebar" data-background-color="white" data-active-color="danger">
<app-sidebar></app-sidebar>
</div>
<div class="main-panel">
<app-navbar></app-navbar>
<div class="content">
<router-outlet></router-outlet>
</div>
<app-footer></app-footer>
</div>
</div>
<app-fixedplugin></app-fixedplugin>
My main question is regarding the implementation of the LoginComponent. Should I include the LoginComponent within the router-outlet?