12345678910111213141516171819202122232425262728293031 |
- import { IonicModule } from '@ionic/angular';
- import { NgModule } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { FormsModule } from '@angular/forms';
- import { Tab1Page } from './tab1.page';
- // import { ReportCardComponent } from '../report-card/report-card.component';
- import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
- import { Tab1PageRoutingModule } from './tab1-routing.module';
- @NgModule({
- imports: [
-
- IonicModule,
- CommonModule,
- FormsModule,
- ExploreContainerComponentModule,
- Tab1PageRoutingModule,
- // ReportCardComponent
-
- ],
- declarations: [Tab1Page]
- })
- export class Tab1PageModule {
-
- }
|