|
|
@@ -2,12 +2,13 @@ import {CommonModule} from '@angular/common';
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
+import {QuarterPipe} from '../quarter.pipe';
|
|
|
import {YearGraphComponent} from './year-graph.component';
|
|
|
|
|
|
@NgModule({
|
|
|
imports: [CommonModule, FormsModule],
|
|
|
exports: [YearGraphComponent],
|
|
|
- declarations: [YearGraphComponent],
|
|
|
+ declarations: [YearGraphComponent, QuarterPipe],
|
|
|
providers: [],
|
|
|
})
|
|
|
export class YearGraphModule {}
|