import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { VideoAllowedPageRoutingModule } from './video-allowed-routing.module'; import { VideoAllowedPage } from './video-allowed.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, VideoAllowedPageRoutingModule ], declarations: [VideoAllowedPage] }) export class VideoAllowedPageModule {}