mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
28 lines
879 B
TypeScript
28 lines
879 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { CreateProcessPageRoutingModule } from './create-process-routing.module';
|
|
|
|
import { CreateProcessPage } from './create-process.page';
|
|
import { EmptyContainerPage } from 'src/app/shared/empty-container/empty-container.page';
|
|
import { EmptyContainerPageModule } from 'src/app/shared/empty-container/empty-container.module';
|
|
import { AttendeeModalPageModule } from 'src/app/shared/event/attendee-modal/attendee-modal.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
CreateProcessPageRoutingModule,
|
|
EmptyContainerPageModule,
|
|
AttendeeModalPageModule
|
|
],
|
|
declarations: [
|
|
CreateProcessPage
|
|
]
|
|
})
|
|
export class CreateProcessPageModule {}
|