Files
doneit-web/src/app/shared/agenda/event-list/event-list.module.ts
T
Peter Maquiran 24e37ae48f Add components
2021-06-03 14:18:30 +01:00

22 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 { EventListPageRoutingModule } from './event-list-routing.module';
import { EventListPage } from './event-list.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
EventListPageRoutingModule
],
declarations: [EventListPage],
exports: [EventListPage]
})
export class EventListPageModule {}