21 lines
523 B
TypeScript
21 lines
523 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { MermsOpencarePageRoutingModule } from './merms-opencare-routing.module';
|
|
|
|
import { MermsOpencarePage } from './merms-opencare.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
MermsOpencarePageRoutingModule
|
|
],
|
|
declarations: [MermsOpencarePage]
|
|
})
|
|
export class MermsOpencarePageModule {}
|