mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
18 lines
312 B
TypeScript
18 lines
312 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { IonicPageModule } from '../../../../../src';
|
|
|
|
import { PageOne } from './page-one';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
PageOne,
|
|
],
|
|
imports: [
|
|
IonicPageModule.forChild(PageOne),
|
|
],
|
|
entryComponents: [
|
|
PageOne,
|
|
]
|
|
})
|
|
export class PageOneModule {}
|