mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
22 lines
557 B
TypeScript
22 lines
557 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { ExpedientesPrPageRoutingModule } from './expedientes-pr-routing.module';
|
|
|
|
import { ExpedientesPrPage } from './expedientes-pr.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
ExpedientesPrPageRoutingModule
|
|
],
|
|
exports: [ ExpedientesPrPage],
|
|
declarations: [ ExpedientesPrPage]
|
|
})
|
|
export class ExpedientesPrPageModule {}
|