mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
20 lines
477 B
TypeScript
20 lines
477 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { IonicApp, IonicModule } from '../../../../..';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { RootPageModule } from '../pages/root-page/root-page.module';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
IonicModule.forRoot(AppComponent),
|
|
RootPageModule
|
|
],
|
|
bootstrap: [IonicApp]
|
|
})
|
|
export class AppModule {}
|