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
374 B
Cheetah

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