tab12.module.ts 465 B

1234567891011121314151617181920
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { FormsModule } from '@angular/forms';
  4. import { IonicModule } from '@ionic/angular';
  5. import { Tab12PageRoutingModule } from './tab12-routing.module';
  6. import { Tab12Page } from './tab12.page';
  7. @NgModule({
  8. imports: [
  9. CommonModule,
  10. FormsModule,
  11. IonicModule,
  12. Tab12PageRoutingModule
  13. ],
  14. declarations: [Tab12Page]
  15. })
  16. export class Tab12PageModule {}