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,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { GalleryPage } from './gallery.page';
const routes: Routes = [
{
path: '',
component: GalleryPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class GalleryPageRoutingModule {}