2020-11-30 16:08:29 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { PublicationsPageRoutingModule } from './publications-routing.module';
|
|
|
|
|
|
|
|
|
|
import { PublicationsPage } from './publications.page';
|
2020-12-16 15:07:28 +01:00
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2020-11-30 16:08:29 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2020-12-16 15:07:28 +01:00
|
|
|
SharedModule,
|
2020-11-30 16:08:29 +01:00
|
|
|
PublicationsPageRoutingModule
|
|
|
|
|
],
|
|
|
|
|
declarations: [PublicationsPage]
|
|
|
|
|
})
|
|
|
|
|
export class PublicationsPageModule {}
|