Add integration of publication

This commit is contained in:
Tiago Kayaya
2020-12-10 11:22:06 +01:00
parent 21cb7d5e96
commit 8597d0a0b0
17 changed files with 274 additions and 19 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { HeaderPage } from './header.page';
const routes: Routes = [
{
path: '',
component: HeaderPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class HeaderPageRoutingModule {}