Add missinf component in operation module.

This commit is contained in:
Alexis Lahouze 2017-07-27 14:12:54 +02:00
parent 99d0eb6d1c
commit e24d5defb7
2 changed files with 8 additions and 0 deletions

View File

@ -8,6 +8,8 @@ import { HttpModule } from '@angular/http';
import { NgLoggerModule, Level } from '@nsalaun/ng-logger';
import { RestangularModule } from 'ngx-restangular';
import { BalanceChartComponent } from './balanceChart.component';
@NgModule({
imports: [
HttpModule,
@ -16,5 +18,11 @@ import { RestangularModule } from 'ngx-restangular';
NgLoggerModule,
RestangularModule,
],
declarations: [
BalanceChartComponent,
],
entryComponents: [
BalanceChartComponent,
]
})
export class OperationModule {}