2021-03-15 12:06:06 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { NewPublicationPageRoutingModule } from './new-publication-routing.module';
|
|
|
|
|
|
|
|
|
|
import { NewPublicationPage } from './new-publication.page';
|
2024-01-18 17:17:03 +01:00
|
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
|
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
2024-05-08 10:38:35 +01:00
|
|
|
import { SwiperPageModule } from 'src/app/shared/swiper/swiper.module';
|
2021-03-15 12:06:06 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2024-01-18 17:17:03 +01:00
|
|
|
NewPublicationPageRoutingModule,
|
|
|
|
|
MatProgressBarModule,
|
|
|
|
|
FontAwesomeModule,
|
2024-05-08 10:38:35 +01:00
|
|
|
SwiperPageModule
|
2021-03-15 12:06:06 +01:00
|
|
|
],
|
2021-06-03 10:41:25 +01:00
|
|
|
exports: [NewPublicationPage],
|
|
|
|
|
declarations: [NewPublicationPage]
|
2021-03-15 12:06:06 +01:00
|
|
|
})
|
|
|
|
|
export class NewPublicationPageModule {}
|