h-selfdelivery-admin-panel-p/src/app/app.component.html
Luba Kaysina 4296ee3755 сделала нотификацию
добавила функционал на вкладки зоны, подразделения, терминалы, клиенты
2022-06-10 16:31:48 +04:00

16 lines
494 B
HTML

<mat-sidenav-container class="main-container" *ngIf="isAuth">
<mat-sidenav #sidenav mode="side" [(opened)]="opened">
<app-menu></app-menu>
</mat-sidenav>
<mat-sidenav-content>
<button (click)="sidenav.toggle()">Меню</button>
<button (click)="signOut()" style="float: right">Выход</button>
<router-outlet></router-outlet>
</mat-sidenav-content>
</mat-sidenav-container>
<app-login *ngIf="!isAuth" (confirm)="setIsAuth()">
</app-login>