You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
965 B
TypeScript
38 lines
965 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { MobileNumberPage } from './mobile-number.page';
|
|
import { InternationalMobileComponent } from './international-mobile/international-mobile.component';
|
|
import { HmgCommonModule } from '../../hmg-common.module';
|
|
import { SearchableOptionsModule } from '../searchable-select/searchable-options.module';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: MobileNumberPage
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
RouterModule.forChild(routes),
|
|
HmgCommonModule,
|
|
SearchableOptionsModule
|
|
],
|
|
declarations: [
|
|
MobileNumberPage,
|
|
InternationalMobileComponent
|
|
],
|
|
exports: [
|
|
InternationalMobileComponent
|
|
]
|
|
})
|
|
export class MobileNumberModule {}
|