You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 rivejä
703 B

  1. import { IonicModule } from '@ionic/angular';
  2. import { RouterModule } from '@angular/router';
  3. import { NgModule } from '@angular/core';
  4. import { CommonModule } from '@angular/common';
  5. import { FormsModule } from '@angular/forms';
  6. import { Tab3Page } from './tab3.page';
  7. import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
  8. import { Tab3PageRoutingModule } from './tab3-routing.module';
  9. @NgModule({
  10. imports: [
  11. IonicModule,
  12. CommonModule,
  13. FormsModule,
  14. ExploreContainerComponentModule,
  15. RouterModule.forChild([{ path: '', component: Tab3Page }]),
  16. Tab3PageRoutingModule,
  17. ],
  18. declarations: [Tab3Page]
  19. })
  20. export class Tab3PageModule {}