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.
27 lines
549 B
TypeScript
27 lines
549 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 { SmsPagePage } from './sms-page.page';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: SmsPagePage
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
RouterModule.forChild(routes)
|
|
],
|
|
declarations: [SmsPagePage]
|
|
})
|
|
export class SmsPagePageModule {}
|