diff --git a/web-ui/src/app/app.module.ts b/web-ui/src/app/app.module.ts index 926975a..342cff8 100644 --- a/web-ui/src/app/app.module.ts +++ b/web-ui/src/app/app.module.ts @@ -1,16 +1,37 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; +import { FormsModule, ReactiveFormsModule } from '@angular/forms'; +import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http'; +import { CommonModule } from '@angular/common'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { AlertModule, BsDropdownModule, CollapseModule, TooltipModule, ModalModule } from 'ngx-bootstrap'; +import { TranslateModule } from '@ngx-translate/core'; +import { ToastrModule } from 'ngx-toastr'; -import { AppComponent } from './app.component'; +import { NgHttpLoaderModule } from 'ng-http-loader/ng-http-loader.module' +import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ - BrowserModule + AlertModule.forRoot(), + BsDropdownModule.forRoot(), + CollapseModule.forRoot(), + TooltipModule.forRoot(), + ModalModule.forRoot(), + CommonModule, + BrowserAnimationsModule, + ToastrModule.forRoot(), + BrowserModule, + FormsModule, + ReactiveFormsModule, + HttpClientModule, + NgHttpLoaderModule, + TranslateModule.forRoot(), ], providers: [], bootstrap: [AppComponent]