Files
Dan Bucholtz 0d32e5e791 chore(gulp): updates to build process to use app-scripts for watch/build
updates to build process to use app-scripts for watch/build
2017-03-02 14:28:15 -06:00

18 lines
349 B
Cheetah

import { NgModule } from '@angular/core';
import { $CLASSNAMEPage } from './$FILENAME';
import { IonicModule } from 'ionic-angular';
@NgModule({
declarations: [
$CLASSNAMEPage,
],
imports: [
IonicModule.forChild($CLASSNAMEPage)
],
entryComponents: [
$CLASSNAMEPage
],
providers: []
})
export class $CLASSNAMEPageModule {}