hemat_solution/src/app/_layout/navigation/navigation.component.html
2024-04-19 12:53:45 +07:00

11 lines
327 B
HTML

<div (window:resize)="onResize($event)">
<app-header></app-header>
<ng-container *ngIf="layout === 'vertical' || isMobile === true">
<app-verticalnav></app-verticalnav>
</ng-container>
<ng-container *ngIf="layout === 'horizontal' && isMobile === false">
<app-horizontalnav></app-horizontalnav>
</ng-container>
</div>