mood.module.ts 590 B

1234567891011121314151617181920
  1. import { IonicModule } from '@ionic/angular';
  2. import { NgModule } from '@angular/core';
  3. import { CommonModule } from '@angular/common';
  4. import { FormsModule } from '@angular/forms';
  5. import { MoodPage } from './mood.page';
  6. import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
  7. import { MoodPageRoutingModule } from './mood-routing.module';
  8. @NgModule({
  9. imports: [
  10. IonicModule,
  11. CommonModule,
  12. FormsModule,
  13. ExploreContainerComponentModule,
  14. MoodPageRoutingModule
  15. ],
  16. declarations: [MoodPage]
  17. })
  18. export class MoodPageModule {}