import { IonicModule } from '@ionic/angular'; import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { MoodPage } from './mood.page'; import { ExploreContainerComponentModule } from '../explore-container/explore-container.module'; import { MoodPageRoutingModule } from './mood-routing.module'; @NgModule({ imports: [ IonicModule, CommonModule, FormsModule, ExploreContainerComponentModule, MoodPageRoutingModule ], declarations: [MoodPage] }) export class MoodPageModule {}