Project

General

Profile

1 50169 argiro.kok
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 51839 argiro.kok
import {SafeHtmlPipeModule} from './pipes/safeHTMLPipe.module';
7 50169 argiro.kok
8
9
@NgModule({
10
  imports: [
11 51839 argiro.kok
    CommonModule, FormsModule, SafeHtmlPipeModule
12 50169 argiro.kok
  ],
13
  declarations: [
14 51839 argiro.kok
     AltMetricsComponent
15 50169 argiro.kok
  ],
16
  exports: [
17 51839 argiro.kok
      AltMetricsComponent
18 50169 argiro.kok
    ]
19
})
20
export class AltMetricsModule { }