You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
471 B

<router-outlet></router-outlet>
<nav mat-align-tabs="center" mat-tab-nav-bar>
<a
*ngFor="let link of [
{ iconName: 'reader-outline', path: 'overview' },
{ iconName: 'people-outline', path: 'users' },
{ iconName: 'server-outline', path: 'market-data' }
]"
#rla="routerLinkActive"
mat-tab-link
routerLinkActive
[active]="rla.isActive"
[routerLink]="link.path"
>
<ion-icon size="large" [name]="link.iconName"></ion-icon>
</a>
</nav>