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