mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
23 lines
609 B
TypeScript
23 lines
609 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { FormsModule } from '@angular/forms';
|
||
|
|
|
||
|
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
|
||
|
|
import { ForwardPageRoutingModule } from './forward-routing.module';
|
||
|
|
|
||
|
|
import { ForwardPage } from './forward.page';
|
||
|
|
import { AttendeeModalPageModule } from 'src/app/shared/event/attendee-modal/attendee-modal.module';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
FormsModule,
|
||
|
|
IonicModule,
|
||
|
|
ForwardPageRoutingModule,
|
||
|
|
AttendeeModalPageModule
|
||
|
|
],
|
||
|
|
declarations: [ForwardPage]
|
||
|
|
})
|
||
|
|
export class ForwardPageModule {}
|