import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { RecommendModePageRoutingModule } from './recommend-mode-routing.module'; import { RecommendModePage } from './recommend-mode.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, RecommendModePageRoutingModule ], declarations: [RecommendModePage] }) export class RecommendModePageModule {}