20 lines
395 B
TypeScript
20 lines
395 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import {IFrameComponent} from './iframe.component';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule, FormsModule
|
|
],
|
|
declarations: [
|
|
IFrameComponent
|
|
],
|
|
exports: [
|
|
IFrameComponent
|
|
]
|
|
})
|
|
export class IFrameModule { }
|