Files
doneit-web/src/app/pages/chat/new-group/contacts/contacts.module.ts
T

26 lines
666 B
TypeScript
Raw Normal View History

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';
2021-06-03 14:52:49 +01:00
import { BtnSeguintePageModule } from 'src/app/shared/btn-seguinte/btn-seguinte.module';
2020-12-21 16:37:44 +01:00
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
2021-06-03 14:52:49 +01:00
ContactsPageRoutingModule,
BtnSeguintePageModule,
2020-12-21 16:37:44 +01:00
],
declarations: [ContactsPage]
})
export class ContactsPageModule {}