mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-08 09:43:42 +01:00
18 lines
320 B
TypeScript
18 lines
320 B
TypeScript
import {
|
|
Component,
|
|
ComponentFactoryResolver,
|
|
NgZone,
|
|
OnDestroy,
|
|
OnInit,
|
|
Type,
|
|
ViewChild,
|
|
ViewContainerRef,
|
|
} from '@angular/core';
|
|
import { Router } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'app-tabs',
|
|
templateUrl: 'tabs.component.html',
|
|
})
|
|
export class TabsComponent { }
|