mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
19 lines
373 B
TypeScript
19 lines
373 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { IonicApp, IonicModule } from 'ionic-angular';
|
|
import { ApiDemoApp, ApiDemoPage } from './app.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
ApiDemoApp,
|
|
ApiDemoPage
|
|
],
|
|
imports: [
|
|
IonicModule.forRoot(ApiDemoApp)
|
|
],
|
|
bootstrap: [IonicApp],
|
|
entryComponents: [
|
|
ApiDemoPage
|
|
]
|
|
})
|
|
export class AppModule {}
|