2021-01-04 12:00:04 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { ContactsPageRoutingModule } from './contacts-routing.module';
|
|
|
|
|
|
|
|
|
|
import { ContactsPage } from './contacts.page';
|
|
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2021-01-13 15:49:58 +01:00
|
|
|
import { PipesModule } from 'src/app/pipes/pipes.module';
|
2021-07-28 09:29:14 +01:00
|
|
|
|
2021-06-03 14:11:34 +01:00
|
|
|
import { FilterPipe } from 'src/app/pipes/filter.pipe';
|
2021-01-04 12:00:04 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-07-28 09:29:14 +01:00
|
|
|
|
2021-06-03 14:11:34 +01:00
|
|
|
ContactsPageRoutingModule,
|
2021-01-13 15:49:58 +01:00
|
|
|
PipesModule,
|
2021-01-04 12:00:04 +01:00
|
|
|
],
|
2021-06-03 16:23:18 +01:00
|
|
|
declarations: [ContactsPage]
|
2021-01-04 12:00:04 +01:00
|
|
|
})
|
|
|
|
|
export class ContactsPageModule {}
|