2021-12-07 17:25:09 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { ViewMediaPageRoutingModule } from './view-media-routing.module';
|
|
|
|
|
|
|
|
|
|
import { ViewMediaPage } from './view-media.page';
|
|
|
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
|
|
|
|
FontAwesomeModule,
|
2022-03-03 08:21:22 +01:00
|
|
|
ViewMediaPageRoutingModule,
|
2021-12-07 17:25:09 +01:00
|
|
|
],
|
|
|
|
|
declarations: [ViewMediaPage]
|
|
|
|
|
})
|
|
|
|
|
export class ViewMediaPageModule {}
|