Project

General

Profile

1 61381 k.triantaf
import { NgModule }            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4
5
import {AltMetricsComponent} from './altmetrics.component';
6
import {SafeHtmlPipeModule} from './pipes/safeHTMLPipe.module';
7
8
9
@NgModule({
10
  imports: [
11
    CommonModule, FormsModule, SafeHtmlPipeModule
12
  ],
13
  declarations: [
14
     AltMetricsComponent
15
  ],
16
  exports: [
17
      AltMetricsComponent
18
    ]
19
})
20
export class AltMetricsModule { }