blob: 2fafceba1fcbf382d0d7590b82e5d76540b0fb9d [file] [log] [blame]
Philipp Schrader72beced2022-03-07 05:29:52 -08001<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>