blob: 285d30639b42eabb134acc5505cac913b4bf7167 [file] [log] [blame]
import {Component} from '@angular/core';
type Tab = 'Entry'|'ImportMatchList';
@Component({
selector: 'my-app',
templateUrl: './app.ng.html',
styleUrls: ['./common.css']
})
export class App {
tab: Tab = 'Entry';
tabIs(tab: Tab) {
return this.tab == tab;
}
switchTabTo(tab: Tab) {
this.tab = tab;
}
}