summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-library/src/app/app.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/portalsdk-tag-library/src/app/app.module.ts')
-rw-r--r--ecomp-sdk/portalsdk-tag-library/src/app/app.module.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/ecomp-sdk/portalsdk-tag-library/src/app/app.module.ts b/ecomp-sdk/portalsdk-tag-library/src/app/app.module.ts
new file mode 100644
index 00000000..7b74cb84
--- /dev/null
+++ b/ecomp-sdk/portalsdk-tag-library/src/app/app.module.ts
@@ -0,0 +1,23 @@
+import { BrowserModule } from '@angular/platform-browser';
+import { NgModule } from '@angular/core';
+
+import { CommonModule } from '@angular/common';
+import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
+import { MaterialModule } from './material-module';
+import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
+import { FormsModule, ReactiveFormsModule } from '@angular/forms';
+import { AppComponent } from './app.component';
+import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
+
+@NgModule({
+ imports: [
+ CommonModule,
+ BrowserModule,
+ BrowserAnimationsModule,
+ HttpClientModule
+ ],
+ declarations: [AppComponent],
+ providers: [],
+ bootstrap: [AppComponent]
+})
+export class AppModule { }