> git show --textconv :src/app/pages/publications/view-publications/publication-detail/publication-detail.page.ts

This commit is contained in:
Tiago Kayaya
2020-12-16 15:07:28 +01:00
parent be03b9c0d3
commit c720767774
25 changed files with 329 additions and 122 deletions
+18
View File
@@ -0,0 +1,18 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { HeaderPage } from './header/header.page';
import { HeaderPrPage } from './header-pr/header-pr.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
],
exports: [HeaderPage, HeaderPrPage],
entryComponents:[],
declarations: [HeaderPage, HeaderPrPage]
})
export class SharedModule {}