Files
doneit-web/src/app/pages/publications/gallery/gallery.module.ts
T
2020-12-01 14:03:15 +01:00

21 lines
479 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { GalleryPageRoutingModule } from './gallery-routing.module';
import { GalleryPage } from './gallery.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
GalleryPageRoutingModule
],
declarations: [GalleryPage]
})
export class GalleryPageModule {}