2017-04-27 15:29:31 +01:00
import { NgModule } from '@angular/core' ;
2017-08-15 17:41:27 +01:00
import { CommonModule } from '@angular/common' ;
2017-08-16 15:48:42 +01:00
import { FormsModule , ReactiveFormsModule } from '@angular/forms' ;
2017-04-27 15:29:31 +01:00
import { ChartsModule } from 'ng2-charts/ng2-charts' ;
import { BsDropdownModule } from 'ngx-bootstrap/dropdown' ;
import { DashboardComponent } from './dashboard.component' ;
2017-08-31 18:44:17 +01:00
import { DashboardCustomerComponent } from './dashboard-customer.component' ;
2017-08-16 15:48:42 +01:00
import { AccountEditComponent } from './account-edit.component' ;
import { AddDataComponent } from './add-data.component' ;
2017-09-01 15:02:05 +01:00
import { FeedbackComponent } from './feedback.component' ;
2017-09-06 16:05:35 +01:00
import { TransactionLogComponent } from './transaction-log.component' ;
2017-08-15 17:41:27 +01:00
2017-08-30 12:35:43 +01:00
import { GraphWidget } from '../widgets/graph-widget.component' ;
2017-08-29 16:42:32 +01:00
2017-08-15 17:41:27 +01:00
import { DashboardRoutingModule } from './dashboard.routing' ;
2017-08-29 18:15:47 +01:00
import { OrgResultComponent } from '../shared/org-result.component' ;
2017-08-30 16:09:57 +01:00
import { OrgTableComponent } from '../shared/org-table.component' ;
2017-09-06 16:05:35 +01:00
import { TransactionResultComponent } from '../shared/transaction-result.component' ;
2017-04-27 15:29:31 +01:00
@NgModule ( {
imports : [
2017-08-16 15:55:12 +01:00
// Angular imports
2017-08-16 15:48:42 +01:00
CommonModule ,
FormsModule ,
ReactiveFormsModule ,
2017-08-16 15:55:12 +01:00
ChartsModule ,
BsDropdownModule ,
DashboardRoutingModule ,
2017-04-27 15:29:31 +01:00
] ,
2017-08-15 17:41:27 +01:00
declarations : [
DashboardComponent ,
2017-08-31 18:44:17 +01:00
DashboardCustomerComponent ,
2017-08-16 15:48:42 +01:00
AccountEditComponent ,
AddDataComponent ,
2017-08-29 18:15:47 +01:00
OrgResultComponent ,
2017-08-30 16:09:57 +01:00
OrgTableComponent ,
2017-09-06 16:05:35 +01:00
TransactionLogComponent ,
TransactionResultComponent ,
2017-09-01 15:02:05 +01:00
FeedbackComponent ,
2017-08-30 12:35:43 +01:00
GraphWidget ,
2017-08-15 17:41:27 +01:00
]
2017-04-27 15:29:31 +01:00
} )
export class DashboardModule { }