Files
doneit-web/src/app/pages/view-event/view-event.module.ts
T
2020-08-13 17:44:57 +01:00

24 lines
663 B
TypeScript

import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { ViewEventPageRoutingModule } from './view-event-routing.module';
import { ViewEventPage } from './view-event.page';
/* import { ComponentsModule } from 'src/app/components/components.module'; */
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
/* ComponentsModule, */
ViewEventPageRoutingModule
],
declarations: [ViewEventPage],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class ViewEventPageModule {}