mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
21 lines
523 B
TypeScript
21 lines
523 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { GroupContactsPageRoutingModule } from './group-contacts-routing.module';
|
|
|
|
import { GroupContactsPage } from './group-contacts.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
GroupContactsPageRoutingModule
|
|
],
|
|
declarations: [GroupContactsPage]
|
|
})
|
|
export class GroupContactsPageModule {}
|