tab2.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 { Tab2Page } from './tab2.page';
  6. import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
  7. import { Tab2PageRoutingModule } from './tab2-routing.module';
  8. @NgModule({
  9. imports: [
  10. IonicModule,
  11. CommonModule,
  12. FormsModule,
  13. ExploreContainerComponentModule,
  14. Tab2PageRoutingModule
  15. ],
  16. declarations: [Tab2Page]
  17. })
  18. export class Tab2PageModule {}