Philipp Schrader | 72beced | 2022-03-07 05:29:52 -0800 | [diff] [blame] | 1 | <ul class="nav nav-tabs"> |
| 2 | <li class="nav-item"> |
| 3 | <a class="nav-link" [class.active]="tabIs('Entry')" (click)="switchTabTo('Entry')">Data Entry</a> |
| 4 | </li> |
| 5 | <li class="nav-item"> |
| 6 | <a class="nav-link" [class.active]="tabIs('ImportMatchList')" (click)="switchTabTo('ImportMatchList')">Import Match List</a> |
| 7 | </li> |
| 8 | </ul> |
| 9 | |
| 10 | <ng-container [ngSwitch]="tab"> |
| 11 | <app-entry *ngSwitchCase="'Entry'"></app-entry> |
| 12 | <app-import-match-list *ngSwitchCase="'ImportMatchList'"></app-import-match-list> |
| 13 | </ng-container> |