follower.module.ts 486 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 { FollowerPageRoutingModule } from './follower-routing.module';
  6. import { FollowerPage } from './follower.page';
  7. @NgModule({
  8. imports: [
  9. CommonModule,
  10. FormsModule,
  11. IonicModule,
  12. FollowerPageRoutingModule
  13. ],
  14. declarations: [FollowerPage]
  15. })
  16. export class FollowerPageModule {}