mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
15 lines
276 B
TypeScript
15 lines
276 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { IonicPageModule } from '../../../../../..';
|
|
|
|
import { RootPage } from './root-page';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
RootPage,
|
|
],
|
|
imports: [
|
|
IonicPageModule.forChild(RootPage)
|
|
]
|
|
})
|
|
export class RootPageModule {}
|