mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { DeepLinkModule } from '../../../../../..';
|
|
import { PageTwo } from './page-two';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
DeepLinkModule.forChild(PageTwo)
|
|
],
|
|
declarations: [
|
|
PageTwo
|
|
],
|
|
})
|
|
export class PageTwoModule { }
|