mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
17 lines
313 B
Cheetah
17 lines
313 B
Cheetah
import { NgModule } from '@angular/core';
|
|
import { IonicPageModule } from 'ionic-angular';
|
|
import { $CLASSNAME } from './$FILENAME';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
$CLASSNAME,
|
|
],
|
|
imports: [
|
|
IonicPageModule.forChild($CLASSNAME),
|
|
],
|
|
exports: [
|
|
$CLASSNAME
|
|
]
|
|
})
|
|
export class $CLASSNAMEModule {}
|