1234567891011121314151617 |
- import { NgModule } from '@angular/core';
- import { IonicModule } from 'ionic-angular';
- import { $CLASSNAME } from './$FILENAME';
-
- @NgModule({
- declarations: [
- $CLASSNAME,
- ],
- imports: [
- IonicModule,
- ],
- exports: [
- $CLASSNAME
- ]
- })
- export class $CLASSNAMEModule {}
|