1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-20 02:51:43 +02:00
bitwarden-desktop/src/app/app.module.ts

23 lines
534 B
TypeScript
Raw Normal View History

2018-01-16 20:48:34 +01:00
import 'zone.js/dist/zone';
2018-01-16 21:58:17 +01:00
import { AppRoutingModule } from './app-routing.module';
2018-01-16 20:48:34 +01:00
import { BrowserModule } from '@angular/platform-browser';
2018-01-16 21:58:17 +01:00
import { NgModule } from '@angular/core';
2018-01-16 20:48:34 +01:00
import { AppComponent } from './app.component';
2018-01-16 21:58:17 +01:00
import { LoginComponent } from './accounts/login.component';
2018-01-16 20:48:34 +01:00
@NgModule({
2018-01-16 21:58:17 +01:00
imports: [
BrowserModule,
AppRoutingModule,
],
declarations: [
AppComponent,
LoginComponent,
],
providers: [],
2018-01-16 20:48:34 +01:00
bootstrap: [AppComponent],
})
export class AppModule { }