mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
18 lines
312 B
TypeScript
18 lines
312 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { IonicPageModule } from '../../../../../src';
|
|
|
|
import { PageTwo } from './page-two';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
PageTwo,
|
|
],
|
|
imports: [
|
|
IonicPageModule.forChild(PageTwo),
|
|
],
|
|
entryComponents: [
|
|
PageTwo,
|
|
]
|
|
})
|
|
export class PageTwoModule {}
|