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