mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +08:00
18 lines
349 B
Cheetah
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 {}
|