mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
22 lines
568 B
TypeScript
22 lines
568 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { IonicApp, IonicModule } from '../../../../src';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { PageOneModule } from '../pages/page-one/page-one.module';
|
|
import { ModalPageModule } from '../pages/modal-page/modal-page.module';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
IonicModule.forRoot(AppComponent),
|
|
PageOneModule,
|
|
ModalPageModule
|
|
],
|
|
bootstrap: [IonicApp]
|
|
})
|
|
export class AppModule {}
|