aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/app.routing.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/ng2/app.routing.ts')
-rw-r--r--catalog-ui/src/app/ng2/app.routing.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/catalog-ui/src/app/ng2/app.routing.ts b/catalog-ui/src/app/ng2/app.routing.ts
new file mode 100644
index 0000000000..38bc92619f
--- /dev/null
+++ b/catalog-ui/src/app/ng2/app.routing.ts
@@ -0,0 +1,20 @@
+import { RouterModule, Route } from '@angular/router';
+import { ModuleWithProviders } from '@angular/core';
+// import { Page1Component } from "./pages/page1/page1.component";
+// import { Page2Component } from "./pages/page2/page2.component";
+import { PageNotFoundComponent } from "./pages/page404/page404.component";
+
+const routes: Route[] = [
+ // { path: 'page1', component: Page1Component },
+ // { path: 'page2', component: Page2Component },
+ // { path: '', pathMatch: 'full', redirectTo: 'page1'},
+ { path: '**', component: PageNotFoundComponent }
+ /*{ loadChildren: './pages/dashboard/dashboard.module#DashboardModule', path: 'dashboard' }*/
+];
+
+export const routing: ModuleWithProviders = RouterModule.forRoot(
+ routes,
+ {
+ useHash: true
+ }
+);