tab1.module.ts 385 B

12345678910111213141516
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { IonicModule } from '@ionic/angular';
  4. import { FormsModule } from '@angular/forms';
  5. import { Tab1Page } from './tab1.page';
  6. @NgModule({
  7. imports: [
  8. CommonModule,
  9. FormsModule,
  10. IonicModule,
  11. Tab1PageModule
  12. ],
  13. declarations: [Tab1Page]
  14. })
  15. export class Tab1PageModule {}