mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
25 lines
625 B
TypeScript
25 lines
625 B
TypeScript
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { ExpedientePageRoutingModule } from './expediente-routing.module';
|
|
|
|
import { ExpedientePage } from './expediente.page';
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
|
|
ExpedientePageRoutingModule,
|
|
],
|
|
declarations: [ExpedientePage],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class ExpedientePageModule {}
|