mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 10:41:13 +08:00
15 lines
333 B
TypeScript
Executable File
15 lines
333 B
TypeScript
Executable File
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { PageThree } from './page-three';
|
|
|
|
const routes: Routes = [
|
|
{ path: '', component: PageThree }
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class PageThreeRoutingModule { }
|