bitwarden-estensione-browser/src/app/app.module.ts

32 lines
865 B
TypeScript
Raw Normal View History

2018-01-23 05:37:36 +01:00
import 'core-js';
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';
import { FormsModule } from '@angular/forms';
2018-01-16 21:58:17 +01:00
import { NgModule } from '@angular/core';
2018-01-23 05:37:36 +01:00
import { ServicesModule } from './services/services.module';
2018-01-16 21:58:17 +01:00
2018-01-16 20:48:34 +01:00
import { AppComponent } from './app.component';
2018-01-23 23:29:30 +01:00
import { IconComponent } from './vault/icon.component';
2018-01-16 21:58:17 +01:00
import { LoginComponent } from './accounts/login.component';
2018-01-16 22:12:26 +01:00
import { VaultComponent } from './vault/vault.component';
2018-01-16 20:48:34 +01:00
@NgModule({
2018-01-16 21:58:17 +01:00
imports: [
BrowserModule,
FormsModule,
2018-01-16 21:58:17 +01:00
AppRoutingModule,
2018-01-23 05:37:36 +01:00
ServicesModule,
2018-01-16 21:58:17 +01:00
],
declarations: [
AppComponent,
2018-01-23 23:29:30 +01:00
IconComponent,
2018-01-16 21:58:17 +01:00
LoginComponent,
2018-01-16 22:12:26 +01:00
VaultComponent,
2018-01-16 21:58:17 +01:00
],
providers: [],
2018-01-16 20:48:34 +01:00
bootstrap: [AppComponent],
})
export class AppModule { }