Files
doneit-web/src/app/shared/agenda/view-event/view-event.module.ts
T
Peter Maquiran b4dc683482 useless import
2021-06-03 13:23:45 +01:00

25 lines
737 B
TypeScript

import { NgModule } 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 { SharedModule } from 'src/app/shared/shared.module';
import { ChatPopoverPage } from '../../popover/chat-popover/chat-popover.page';
import { ComponentsModule } from 'src/app/components/components.module';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ViewEventPageRoutingModule
],
declarations: [ViewEventPage],
exports: [ViewEventPage]
})
export class ViewEventPageModule {}