import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { SystemMessagePageRoutingModule } from './system-message-routing.module'; import { SystemMessagePage } from './system-message.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, SystemMessagePageRoutingModule ], declarations: [SystemMessagePage] }) export class SystemMessagePageModule {}