18 lines
492 B
TypeScript
18 lines
492 B
TypeScript
import { IonicModule } from '@ionic/angular';
|
|
import { RouterModule } from '@angular/router';
|
|
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { ContactPage } from './contact.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
IonicModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
RouterModule.forChild([{ path: '', component: ContactPage }])
|
|
],
|
|
declarations: [ContactPage]
|
|
})
|
|
export class ContactPageModule {}
|