mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
18 lines
304 B
TypeScript
18 lines
304 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { DeepLinkModule } from '../../../../../..';
|
|
|
|
import { E2EPage } from './main';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
E2EPage,
|
|
],
|
|
imports: [
|
|
DeepLinkModule.forChild(E2EPage)
|
|
],
|
|
entryComponents: [
|
|
E2EPage,
|
|
]
|
|
})
|
|
export class E2EPageModule {}
|