Files
doneit-web/src/app/shared/chat/messages/contacts/contacts.module.ts
T

26 lines
706 B
TypeScript
Raw Normal View History

2021-03-04 18:50:26 +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-03-15 15:19:07 +01:00
import { FilterPipe } from 'src/app/pipes/filter.pipe';
2021-06-03 14:11:34 +01:00
import { PipesModule } from 'src/app/pipes/pipes.module';
2021-03-04 18:50:26 +01:00
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
2021-06-03 14:11:34 +01:00
ContactsPageRoutingModule,
PipesModule,
2021-03-04 18:50:26 +01:00
],
2021-06-03 14:11:34 +01:00
exports: [ContactsPage],
2021-06-03 16:23:18 +01:00
declarations: [ContactsPage]
2021-03-04 18:50:26 +01:00
})
export class ContactsPageModule {}