tab1.module.ts 717 B

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