Files
MermsProviders/src/app/patient/merms-selectedpatient/merms-selectedpatient.module.ts
T
Olu Amey fffcc586e2 fix
2020-12-07 13:11:06 -05:00

21 lines
572 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { MermsSelectedpatientPageRoutingModule } from './merms-selectedpatient-routing.module';
import { MermsSelectedpatientPage } from './merms-selectedpatient.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
MermsSelectedpatientPageRoutingModule
],
declarations: [MermsSelectedpatientPage]
})
export class MermsSelectedpatientPageModule {}