UI of publication´s list page finished

This commit is contained in:
Tiago Kayaya
2020-12-01 14:03:15 +01:00
parent 216ef1dc9f
commit 8e31026caa
34 changed files with 680 additions and 2 deletions
@@ -0,0 +1,20 @@
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 {}