App routing

added application routes

Issue-ID: CCSDK-816
Change-Id: Iba52d17aeabdb767c52cf6f8d56bf0bca1ae031c
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
diff --git a/cds-ui/client/src/app/app-routing.module.ts b/cds-ui/client/src/app/app-routing.module.ts
index 8a33f22..22e4887 100644
--- a/cds-ui/client/src/app/app-routing.module.ts
+++ b/cds-ui/client/src/app/app-routing.module.ts
@@ -21,28 +21,20 @@
 
 import { NgModule } from '@angular/core';
 import { Routes, RouterModule } from '@angular/router';
-// import { AboutComponent } from './common/shared/components/about/about.component';
-// import { PageNotFoundComponent } from './common/shared/components/page-not-found/page-not-found.component';
-// import { SelectTemplateComponent } from './feature-module/select-template/select-template.component';
-// import { HomeComponent } from './common/shared/components/home/home.component';
+import { HomeComponent } from './common/shared/components/home/home.component';
 
 
 const routes: Routes = [
-// {
-//   path: '',
-//   component: HomeComponent,
-//   children: [
-//     {
-//       path: '',
-//       component: AboutComponent
-
-//     },
-//     {
-//       path: 'controllerBlueprint',
-//       loadChildren: './feature-module/controller-blueprint/controller-blueprint.module#ControllerBlueprintModule'
-//     }
-//   ]
-// }
+{
+  path: '',
+  component: HomeComponent,
+   children: [
+    {
+      path: 'blueprint',
+      loadChildren: './feature-modules/blueprint/blueprint.module#BlueprintModule'
+    }
+  ]
+}
 ];
 
 @NgModule({