Files
doneit-web/src/app/pages/publications/gallery/gallery.module.ts
T

21 lines
479 B
TypeScript
Raw Normal View History

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 {}