2020-12-01 14:03:15 +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';
|
2023-10-31 10:09:12 +01:00
|
|
|
import '@teamhive/capacitor-video-recorder';
|
2024-01-18 17:17:03 +01:00
|
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
2024-03-26 12:03:30 +01:00
|
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
|
|
|
|
|
|
|
|
|
2020-12-01 14:03:15 +01:00
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2024-01-18 17:17:03 +01:00
|
|
|
NewPublicationPageRoutingModule,
|
|
|
|
|
FontAwesomeModule,
|
2024-03-26 12:03:30 +01:00
|
|
|
MatProgressBarModule,
|
2020-12-01 14:03:15 +01:00
|
|
|
],
|
2021-06-03 12:08:49 +01:00
|
|
|
exports: [NewPublicationPage],
|
|
|
|
|
declarations: [NewPublicationPage]
|
2020-12-01 14:03:15 +01:00
|
|
|
})
|
|
|
|
|
export class NewPublicationPageModule {}
|