mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
23 lines
704 B
TypeScript
23 lines
704 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { FormsModule } from '@angular/forms';
|
||
|
|
|
||
|
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
|
||
|
|
import { ViewDocumentSecondOptionsPageRoutingModule } from './view-document-second-options-routing.module';
|
||
|
|
|
||
|
|
import { ViewDocumentSecondOptionsPage } from './view-document-second-options.page';
|
||
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
FormsModule,
|
||
|
|
IonicModule,
|
||
|
|
ViewDocumentSecondOptionsPageRoutingModule,
|
||
|
|
FontAwesomeModule
|
||
|
|
],
|
||
|
|
declarations: [ViewDocumentSecondOptionsPage]
|
||
|
|
})
|
||
|
|
export class ViewDocumentSecondOptionsPageModule {}
|