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 {IFrameComponent} from './iframe.component';
6
7
8
@NgModule({
9
  imports: [
10
    CommonModule, FormsModule
11
  ],
12
  declarations: [
13
     IFrameComponent
14
  ],
15
  exports: [
16
      IFrameComponent
17
    ]
18
})
19
export class IFrameModule { }