1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/src/app/app.component.ts

22 lines
413 B
TypeScript
Raw Normal View History

2018-06-05 05:10:41 +02:00
import {
ToasterConfig,
ToasterContainerComponent,
} from 'angular2-toaster';
import { Angulartics2GoogleAnalytics } from 'angulartics2/ga';
import {
Component,
} from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-root',
styles: [],
template: `
<router-outlet></router-outlet>`,
})
export class AppComponent {
constructor() {
}
}