Newer
Older
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { ContactListPage } from './contactList';
@NgModule({
declarations: [
ContactListPage,
],
imports: [
IonicPageModule.forChild(ContactListPage),
],
})
export class ContactListModule {}