removed exmple apps code
[ealt-edge.git] / example-apps / ROBO / RoboUI / src / app / app-routing.module.ts
diff --git a/example-apps/ROBO/RoboUI/src/app/app-routing.module.ts b/example-apps/ROBO/RoboUI/src/app/app-routing.module.ts
deleted file mode 100644 (file)
index 67db521..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-import { NgModule } from '@angular/core';
-import { Routes, RouterModule } from '@angular/router';
-import { DataFetchComponent } from './data-fetch/data-fetch.component';
-import { DataMonitorComponent } from './data-monitor/data-monitor.component';
-import { BackuprestoreComponent } from './backuprestore/backuprestore.component';
-
-const routes: Routes = [
-  {
-    path: 'dataupload',
-    component: DataFetchComponent
-  },
-  {
-    path: 'datamonitor',
-    component: DataMonitorComponent
-  },
-
-  {
-    path: 'backuprestore',
-    component: BackuprestoreComponent
-  }
-  // {
-  //   path: '**',
-  //   redirectTo: ''
-  // }
-];
-
-@NgModule({
-  imports: [RouterModule.forRoot(routes)],
-  exports: [RouterModule]
-})
-export class AppRoutingModule { 
-
-}