2020-12-21 16:37:44 +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';
|
2020-12-22 15:53:30 +01:00
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2020-12-21 16:37:44 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2020-12-22 15:53:30 +01:00
|
|
|
SharedModule,
|
2020-12-21 16:37:44 +01:00
|
|
|
ContactsPageRoutingModule
|
|
|
|
|
],
|
|
|
|
|
declarations: [ContactsPage]
|
|
|
|
|
})
|
|
|
|
|
export class ContactsPageModule {}
|