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