1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-21 03:01:37 +02:00
bitwarden-desktop/src/app/app.module.ts
2018-01-16 15:58:17 -05:00

23 lines
534 B
TypeScript

import 'zone.js/dist/zone';
import { AppRoutingModule } from './app-routing.module';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { LoginComponent } from './accounts/login.component';
@NgModule({
imports: [
BrowserModule,
AppRoutingModule,
],
declarations: [
AppComponent,
LoginComponent,
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule { }