dsynth.net/dsynth/src/app/app.component.html
2020-03-12 10:49:18 -04:00

17 lines
452 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<mat-toolbar color="primary">
<button mat-button [matMenuTriggerFor]="langMenu">
{{"nav.lang_select" | translate}}
<mat-icon>arrow_drop_down</mat-icon>
</button>
<mat-menu #langMenu>
<button mat-menu-item *ngFor="let lang of langList" (click)="langChange(lang)">
{{lang.display}}
</button>
</mat-menu>
</mat-toolbar>
<h1> {{ "nav.test" | translate }}</h1>
<router-outlet></router-outlet>