mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
bfa4f2ec91
Add approve page and criate its layout; Finish functionality for list approve page
21 lines
495 B
TypeScript
21 lines
495 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { EventListPageRoutingModule } from './event-list-routing.module';
|
|
|
|
import { EventListPage } from './event-list.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
EventListPageRoutingModule
|
|
],
|
|
declarations: [EventListPage]
|
|
})
|
|
export class EventListPageModule {}
|