|
|
@@ -1,5 +1,6 @@ |
|
|
|
import { NgModule } from '@angular/core'; |
|
|
|
import { BrowserModule } from '@angular/platform-browser'; |
|
|
|
import { FileUploadModule } from 'ng2-file-upload'; |
|
|
|
|
|
|
|
import { AppRoutingModule } from './app-routing.module'; |
|
|
|
import { AppComponent } from './app.component'; |
|
|
@@ -22,6 +23,8 @@ import { InvestigateBusinessEntitiesAndIndividualsComponent } from './pages/inve |
|
|
|
import { ViewCaseDetailsComponent } from './pages/investigate-business-entities-and-individuals/view-case-details/view-case-details.component'; |
|
|
|
import { ModifyCaseDetailsComponent } from './pages/investigate-business-entities-and-individuals/modify-case-details/modify-case-details.component'; |
|
|
|
import { AssignPanelComponent } from './pages/investigate-business-entities-and-individuals/assign-panel/assign-panel.component'; |
|
|
|
import { TextareaComponent } from './widgets/form/textarea/textarea.component'; |
|
|
|
import { MultiFileUploadComponent } from './widgets/form/multi-file-upload/multi-file-upload.component'; |
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
declarations: [ |
|
|
@@ -43,12 +46,15 @@ import { AssignPanelComponent } from './pages/investigate-business-entities-and- |
|
|
|
InvestigateBusinessEntitiesAndIndividualsComponent, |
|
|
|
ViewCaseDetailsComponent, |
|
|
|
ModifyCaseDetailsComponent, |
|
|
|
AssignPanelComponent |
|
|
|
AssignPanelComponent, |
|
|
|
TextareaComponent, |
|
|
|
MultiFileUploadComponent |
|
|
|
], |
|
|
|
imports: [ |
|
|
|
BrowserModule, |
|
|
|
AppRoutingModule, |
|
|
|
FormsModule |
|
|
|
FormsModule, |
|
|
|
FileUploadModule, |
|
|
|
], |
|
|
|
providers: [], |
|
|
|
bootstrap: [AppComponent] |
|
|
|